Callback to complete user deletion with verification token
curl --request GET \
--url https://aquila.attaxr.com/api/auth/delete-user/callback \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/delete-user/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/delete-user/callback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"message": "User deleted"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Auth
Callback to complete user deletion with verification token
Callback to complete user deletion with verification token
GET
/
api
/
auth
/
delete-user
/
callback
Callback to complete user deletion with verification token
curl --request GET \
--url https://aquila.attaxr.com/api/auth/delete-user/callback \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/delete-user/callback', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/delete-user/callback"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"success": true,
"message": "User deleted"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
Personal API key sent as a bearer token.
Query Parameters
The token to verify the deletion request
The URL to redirect to after deletion

