Download OpenAPI specification:
Planning-only contract surface for webhook subscriptions and event catalog introspection. This document does not imply a runtime backend implementation.
Read-only catalog introspection. Auth: requires developer/merchant auth (implementation-specific; not implemented in this RC).
| limit | integer [ 1 .. 200 ] |
| cursor | string |
| X-Correlation-Id required | string |
{- "events": [
- {
- "event_type": "string",
- "description": "string"
}
], - "next_cursor": "string"
}Read-only subscription introspection. Auth: requires developer/merchant auth (implementation-specific; not implemented in this RC).
| merchant_id | string <uuid> |
| status | string (WebhookSubscriptionStatus) Enum: "active" "paused" "disabled" |
| limit | integer [ 1 .. 200 ] |
| cursor | string |
| X-Correlation-Id required | string |
{- "subscriptions": [
- {
- "subscription_id": "aa11a4c2-a467-43db-b413-c4ab0f5cf627",
- "merchant_id": "500924a8-3f5e-4c00-beb8-2efcde988aea",
- "status": "active",
- "endpoint_url": "string",
- "event_types": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z"
}
], - "next_cursor": "string"
}