Rerun a scan
curl --request POST \
--url https://aquila.attaxr.com/api/scans/{id}/rescan \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/scans/{id}/rescan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/scans/{id}/rescan"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Scans
Rerun a scan
Queues a new run of an existing scan or schedule. The new run copies the stored configuration.
POST
/
api
/
scans
/
{id}
/
rescan
Rerun a scan
curl --request POST \
--url https://aquila.attaxr.com/api/scans/{id}/rescan \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/scans/{id}/rescan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/scans/{id}/rescan"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
