Skip to main content
GET
/
v0
/
user
/
can-delete-account
curl --request GET \
  --url 'https://api.unify.ai/v0/user/can-delete-account' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "can_delete": "boolean",
    "blockers": "[Any]"
}
Pre-flight check for account deletion. Returns whether the current user can delete their account, and if not, the reasons why (pending bills, org ownership, etc.).

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
  --url 'https://api.unify.ai/v0/user/can-delete-account' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "can_delete": "boolean",
    "blockers": "[Any]"
}