Clear interactions
curl --request DELETE \
--url https://aquila.attaxr.com/api/oob/interactions \
--cookie better-auth.session_token=const options = {method: 'DELETE', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/interactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/interactions"
headers = {"cookie": "better-auth.session_token="}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}OOB
Clear interactions
Clears every interaction for the caller, or one correlation group.
DELETE
/
api
/
oob
/
interactions
Clear interactions
curl --request DELETE \
--url https://aquila.attaxr.com/api/oob/interactions \
--cookie better-auth.session_token=const options = {method: 'DELETE', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/oob/interactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/oob/interactions"
headers = {"cookie": "better-auth.session_token="}
response = requests.delete(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
