Alerts
Get a receipt
Retrieve the delivery receipt for a notification by ID, including its state and (when applicable) failure reason and referenced resource.
GET
Get a receipt
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Receipt ID
Response
receipt found
Delivery state of the receipt.
Available options:
pending, done, failed Reason a receipt failed. Present when state is failed.
Available options:
no_route_matched, deduplicated, suppressed, validation_error Type of the referenced resource (present when set).
ID of the referenced resource (present when set).
Previous
List API keysList API keys for the current organization. Returns key metadata including name, kind, expiration, and last usage — the secret token value is never included in the response.
**API key kinds:**
- `personal` — tied to a specific user, inherits that user's permissions.
- `team` — scoped to one or more teams (groups), creates a service account with permissions derived from group membership.
- `organization` — organization-wide, creates a service account with a configurable role and on-call role.
**Automated rotation workflow:** Use `filter[expires_at][lt]` to find keys approaching expiration, then call the rotate endpoint to issue a new token before the old one expires. Combine with `filter[active]=true` to exclude already-expired keys.
**Sorting:** Use the `sort` parameter with a field name (e.g., `sort=expires_at`). Prefix with `-` for descending order (e.g., `sort=-created_at`). Allowed fields: `name`, `kind`, `created_at`, `updated_at`, `expires_at`, `last_used_at`.
Next
Get a receipt