Reinstate scan

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

Example requests and responses

cURL

curl --location --request GET 'https://daas.digicert.com/apicontroller/v1/scan/reinstate' \
--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 Reinstated Successfully"
        }
    }
]

Request parameters

NameReq/OptTypeDescription
accountIdrequiredstringAccount ID.
divisionIdrequiredarrayDivision ID.
scanDefIdsrequiredarrayList of unique IDs for scan templates to reinstate.
reasonrequiredstringReason for reinstating 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.