Queue a new analysis run
curl --request POST \
--url https://aquila.attaxr.com/api/js-analysis/{id}/run \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-analysis/{id}/run', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-analysis/{id}/run"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}JS Analysis
Queue a new analysis run
Creates the analysis row and runs it asynchronously. Returns 202 immediately.
POST
/
api
/
js-analysis
/
{id}
/
run
Queue a new analysis run
curl --request POST \
--url https://aquila.attaxr.com/api/js-analysis/{id}/run \
--cookie better-auth.session_token=const options = {method: 'POST', headers: {cookie: 'better-auth.session_token='}};
fetch('https://aquila.attaxr.com/api/js-analysis/{id}/run', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/js-analysis/{id}/run"
headers = {"cookie": "better-auth.session_token="}
response = requests.post(url, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
