List Webhook Events
GET/api/shippit/instances/:integration_instance/webhooks
Returns a paginated list of inbound webhook events received from Shippit for this instance, newest first. Every inbound webhook is persisted so you can audit and inspect deliveries; each row records the event type, tracking number, courier job id, the dedup key, the raw payload, and whether it has been processed yet (processed / processed_at).
Sortable columns: id, event_type, tracking_number, received_at, processed_at, created_at (default -received_at). Default page size is 15.
Filtering uses operator-aware syntax filter[field.operator]=value; a bare filter[field]=value means equals. Available filters: id, event_type, tracking_number, courier_job_id, dedup_key, processed (1 = processed, 0 = pending, all = no filter), received_at, processed_at, created_at. filter[search] matches tracking number, event type, courier job id, and dedup key.
Authentication: Requires Bearer token.
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.