Skip to content
POSTAPI key

Send a test delivery

POSTapi.trackingmcp.com/v1/webhooks/{id}/test

Queue a ping delivery so you can prove your receiver end to end. It travels the same path as a real event: same headers, same envelope, same signature, same retry ladder. The response confirms the delivery was queued, not that it arrived, and the queue is swept every 30 seconds. Answers 404 NOT_FOUND for an unknown id.

Path parameters

idstringrequired

Endpoint id.

Response fields

Derived from the example response.

okboolean

Whether the request succeeded.

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.test_queuedboolean
curl -X POST 'https://api.trackingmcp.com/v1/webhooks/3f1c9a4e-7b52-4f0e-9a41-2c9d5e6b8a10/test' \
  -H "Authorization: Bearer tmcp_YOUR_API_KEY"
Response
{
  "ok": true,
  "data": { "id": "3f1c9a4e-7b52-4f0e-9a41-2c9d5e6b8a10", "test_queued": true }
}