Reset all account data
curl --request POST \
--url https://aquila.attaxr.com/api/user-profiles/me/reset-data \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"confirmed": true
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({confirmed: true})
};
fetch('https://aquila.attaxr.com/api/user-profiles/me/reset-data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/user-profiles/me/reset-data"
payload = { "confirmed": True }
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}User Profiles
Reset all account data
Permanently deletes every piece of user-owned data: scans, leads, vulnerabilities, reports, chat history, agent runs, OOB captures, workspace objects, API/provider/MCP credentials, schedules, notifications, memory and caches. The account itself and the calling session are kept. Refuses while scans or chat turns are still running.
POST
/
api
/
user-profiles
/
me
/
reset-data
Reset all account data
curl --request POST \
--url https://aquila.attaxr.com/api/user-profiles/me/reset-data \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"confirmed": true
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({confirmed: true})
};
fetch('https://aquila.attaxr.com/api/user-profiles/me/reset-data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/user-profiles/me/reset-data"
payload = { "confirmed": True }
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
