List Instance Webhook Events
GET/api/integrations/17track/instances/:instance/webhooks
Paginated audit log of every 17TRACK webhook received for this integration instance. One row per inbound webhook, persisted by a background job BEFORE processing.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Powers the "Webhooks" sub-page of the 17TRACK integration UI.
Supported filters:
filter[event_type]— comma-separated 17TRACK event typesfilter[result]— comma-separated outcomes (processed, failed, ignored)filter[tracking_number]— substring match on tracking_numberfilter[date_from],filter[date_to]— m/d/Y, applied to received_at
Allowed sorts: received_at, created_at, event_type, result (default: -received_at).
Each row includes a precomputed summary string like "In Transit → Delivered".
Responses:
200 OK— paginated webhook event rows401 Unauthorized— missing/invalid bearer token404 Not Found— instance id does not exist
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.