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>"
}
'import requests
url = "http://127.0.0.1:3333/v3/users/me"
payload = {
"reason": "<string>",
"confirmation": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '<string>', confirmation: '<string>'})
};
fetch('http://127.0.0.1:3333/v3/users/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true
}Users
Delete User Me
Delete Authenticated User Account.
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>"
}
'import requests
url = "http://127.0.0.1:3333/v3/users/me"
payload = {
"reason": "<string>",
"confirmation": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({reason: '<string>', confirmation: '<string>'})
};
fetch('http://127.0.0.1:3333/v3/users/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true
}Authorizations
bearerAuthapiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
200 - application/json
Default Response