Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Delete Account

Permanently delete the account and all associated data. DELETE /account  ·  🔒 Auth required
⚠️ Irreversible. All wallets, operations, and webhooks are permanently removed.

Request

{
  "password": "Str0ng!Pass",
  "confirmation": "DELETE"
}
FieldTypeRequiredNotes
passwordstringCurrent account password
confirmationstringMust be the exact string "DELETE"

Response 204 No Content

Empty body. Session is immediately invalidated.

Errors

CodeHTTPCause
VALIDATION_ERROR400confirmation is not "DELETE"
INVALID_CREDENTIALS401Wrong password

Example

curl -X DELETE https://api.sertexity.com/v1/account \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{"password":"Str0ng!Pass","confirmation":"DELETE"}'