ListDeliveries
List deliveries, newest event first. With no integration_id this is the
whole workspace’s feed; with one it is that integration’s.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Restrict to one integration. Omit for the whole workspace's feed.
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$Restrict to one event — every integration it reached, and what each did with
it. This is the event_id from a received webhook payload.
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$Restrict to the issue or incident the delivery was about. Takes the same identifier the rest of the API uses for that object.
200Restrict to these event types, by synq.webhooks.v1.Event.EventType name.
Empty matches every type.
20100Restrict to these outcomes. Empty matches every outcome.
5Outcome is what became of a delivery. It is a state the service maintains, not something to recompute from status codes: a 500 that will be retried and a 500 that exhausted the retries are the same status and different outcomes.
OUTCOME_UNSPECIFIED, OUTCOME_PENDING, OUTCOME_DELIVERED, OUTCOME_FAILED, OUTCOME_SKIPPED, OUTCOME_NOT_ROUTED Restrict to deliveries whose most recent attempt returned one of these HTTP statuses. Empty matches every status.
20100 <= x <= 599Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.
Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive.
Opaque cursor token for the next page of results. If not provided, returns the first page. This is an encoded token that should be passed as-is from the previous PageInfo.last_id.
Maximum number of items to return in a single page. If not provided, defaults vary per API.
x >= 0Also return matched_alert_configs and correlation_key on each delivery.
Off by default: it costs a second read per delivery, and a feed rarely needs
it. BatchGetDeliveries always returns them.