Suspend scan

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

Example requests and responses

cURL

curl --location --request POST 'https://daas.digicert.com/apicontroller/v1/scan/suspend' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{"accountId":5153184,"divisionIds":[677793],"scanDefIds":[290718],"reason":"Duplicate scan"}'

200 OK

[
    {
        "error": null,
        "data": {
            "id": "290718",
            "message": "Scan Suspended Successfully"
        }
    }
]

Request parameters

NameReq/OptTypeDescription
accountIdrequiredstringAccount ID.
divisionIdsrequiredarrayDivision IDs.
scanDefIdsrequiredarrayList of unique IDs for scan templates to suspend.
reasonoptionalstringReason for suspending the scan.

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.