DELETE
/
me
/
account
Delete User Account
curl --request DELETE \
  --url https://{deploymentHost}/me/account \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "currentPassword123!",
  "confirmation": "DELETE_MY_ACCOUNT"
}'
{
"status": 200,
"message": "",
"data": {
"account_deleted": true,
"user_id": "user_456789123",
"deleted_at": "2024-01-15T16:00:00Z",
"data_purged": true
},
"session": {
"signin_attempts": [],
"signins": [],
"signup_attempts": [],
"active_signin": null
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Account deleted successfully

The response is of type object.