Skip to content
DELETEAPI key

Delete an endpoint

DELETEapi.loadingmcp.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 schema

4 fields

Derived from the example response, nested as the JSON is.

okboolean

Whether the request succeeded.

dataobject

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

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.

deletedboolean

True when the endpoint is gone. Deliveries stop immediately and its history goes with it.

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