Stop agent runs
curl --request POST \
--url https://aquila.attaxr.com/api/agents/stop \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"ids": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['<string>']})
};
fetch('https://aquila.attaxr.com/api/agents/stop', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/agents/stop"
payload = { "ids": ["<string>"] }
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>"
}Agents
Stop agent runs
Cancels the listed agent runs. Owner or admin only.
POST
/
api
/
agents
/
stop
Stop agent runs
curl --request POST \
--url https://aquila.attaxr.com/api/agents/stop \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"ids": [
"<string>"
]
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({ids: ['<string>']})
};
fetch('https://aquila.attaxr.com/api/agents/stop', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/agents/stop"
payload = { "ids": ["<string>"] }
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>"
}
