Scan Data
Delete Multiple Scans
Bulk Delete Scans
DELETE
/
api
/
{scanner}
/
scans
Authorization
Path
Body
curl --request DELETE \
--url https://api.novasec.io/api/{scanner}/scans \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '{
"scans": [
"{scanId1}",
"{scanId2}",
"..."
]
}'
Authorizations
X-API-Key
string
headerrequiredPath Parameters
scanner
string
requiredBody
application/json
scans
any[]
curl --request DELETE \
--url https://api.novasec.io/api/{scanner}/scans \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '{
"scans": [
"{scanId1}",
"{scanId2}",
"..."
]
}'