Skip to content
DELETEAPI key

Delete an endpoint

DELETEapi.aircargomcp.com/v1/webhooks/{id}

Remove the endpoint and its delivery history. Queued deliveries are discarded rather than sent. To pause instead, PATCH active to false, which keeps the secret and the history. Management, so a valid key is enough.

Path parameters

idstringrequired

Endpoint id.

Response fields

Derived from the example response.

dataobject

The payload. Everything an endpoint returns sits under this key.

data.idstring

Stable identifier for the record. On the tracking endpoints this is the container UUID, except on a portfolio summary row, where it is the container number.

data.deletedboolean
curl -X DELETE 'https://api.aircargomcp.com/v1/webhooks/3f1c9a4e-7b52-4f0e-9a41-2c9d5e6b8a10' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "data": { "id": "3f1c9a4e-7b52-4f0e-9a41-2c9d5e6b8a10", "deleted": true }
}