Void sensor

POST https://daas.digicert.com/apicontroller/v1/sensor/void
Use this endpoint to void the sensor permanently.

Example requests and responses

cURL

curl --location --request POST 'https://daas.digicert.com/apicontroller/v1/sensor/void' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{"accountId":5153184,"divisionIds":[677793],"licenseKey":[{{license_key}}],"reason":"No longer in use"}'

200 OK

[
    {
        "error": null,
        "data": {
            "id": "984A6B3F786A3C14",
            "message": "Sensor Voided Successfully"
        }
    }
]

Request parameters

NameReqd/Opt.TypeDescription
accountIdrequiredstringAccount ID.
divisionIdrequiredintegerDivision ID.
licenseKeyrequiredstringLicense key of the sensor to void. Supports bulk void by providing comma-separated license keys.
reasonoptionalstringReason for voiding the sensor.

Response parameters

NameTypeDescription
errorobjectIncludes the error code, if any.
dataobjectObject container for response.
.. idstringLicense key of the terminated sensor.
.. messagestringMessage with additional information about the request.