Skip to main content
DELETE
/
v0
/
user
/
delete-account
curl --request DELETE \
  --url 'https://api.unify.ai/v0/user/delete-account' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "success": "boolean",
    "message": "string"
}
Delete the current user’s account (self-service). Requires email confirmation to prevent accidental deletion. Permanently removes all user data - this action cannot be undone. Blocked if:
  • User has pending bills
  • User owns organizations (must transfer ownership first)

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

confirm_email
string
required
curl --request DELETE \
  --url 'https://api.unify.ai/v0/user/delete-account' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{
    "success": "boolean",
    "message": "string"
}