DELETE
/
v3
/
users
/
me
Delete User Me
curl --request DELETE \
  --url http://127.0.0.1:3333/v3/users/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "confirmation": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
reason
string
required
Minimum string length: 1
confirmation
string
required
Minimum string length: 1
description
string

Response

200 - application/json

Default Response

success
boolean
required