Delete endpoints

POST https://daas.digicert.com/apicontroller/v1/reports/delete
Use this endpoint to delete one or more endpoints. Deleting an endpoint permanently removes the endpoints and any certificates associated with the scan results.

Example requests and responses

cURL

curl -X POST \
  https://daas.digicert.com/apicontroller/v1/reports/delete \
  -H 'Content-Type: application/json' \
  -H 'X-DC-DEVKEY: {{api_key}}' \
  -d '{
    "accountId": 5153184,
    "divisionIds": [],
    "ipPortList": [
        {
            "ip": "45.60.121.229",
            "port": 443
        },
        {
            "ip": "68.142.70.26",
            "port": 3389
        }
    ]
}'

200 OK

{
    "error": null,
    "data": "Request accepted successfully"
}

Request parameters

NameReq/OptTypeDescription
accountIdrequiredstringAccount ID.
divisionIdrequiredarrayDivision ID.
ipPortListrequiredarrayList of IPs and ports for the endpoints to delete from the scan results.
.. iprequiredstringIP address associated with the endpoint.
.. portrequiredintegerPort associated with the endpoint.

Response parameters

NameTypeDescription
errorobjectIncludes the error code, if any.
dataobjectMessage with information about the request.