Deleting an Account

Using a user_access_token call the endpoint

POST /api/1/user/delete/request?locale=locale

with an empty request body

{
    "requested": true
}

If instead, using the client_access_token, call this endpoint

POST /api/1/user/{userId}/delete

A notification email containing a delete_request nonce would be sent to the user owning the user_access_token

To complete the account deletion, using the delete_request nonce received, a call to

POST {{base_url}}/api/1/user/delete/finish?locale=locale

with the following payload would return with the following response.

{
    "nonce": "<DELETE_REQUEST>"
}

Response

{
    "deleted" : true
}