Abort scan

POST https://daas.digicert.com/apicontroller/v1/scan/abort
Use this endpoint to terminate or abort the scan job.

Example requests and responses

cURL

curl --location --request POST 'https://daas.digicert.com/apicontroller/v1/scan/abort' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{"accountId":"5153184","divisionId":677793,"scanIds":[294440]}'

200 OK

[
    {
        "error": null,
        "data": {
            "id": "294440",
            "message": "Scan abort successful"
        }
    }
]

Request parameters

NameReq/OptTypeDescription
scanIdsrequiredarrayList of unique IDs associated with individual scan jobs to abort.
accountIdrequiredstringAccount ID.
divisionIdrequiredintegerDivision ID.

Response parameters

NameTypeDescription
errorobjectIncludes the error code if any.
dataobjectObject container for response.
.. idstringID associated with the scan, also known as the  surveyDefId
.. messagestringMessage with additional information about the request.