Skip to main content

Delete Callback

Permanently remove a callback registration and stop all future event deliveries to its endpoint.

Endpoint

DELETE /v2/callbacks

Request Body

FieldTypeRequiredConstraintsDescription
callbackIdintYesThe unique ID of the callback to delete.
{
"callbackId": 7001
}

Response

Returns a boolean indicating whether the deletion was successful.

{
"success": true,
"data": true
}

Code Examples

curl -X DELETE "https://rest.ecgrid.io/v2/callbacks" \
-H "X-API-Key: $ECGRID_API_KEY"

See Also