get
https://api.lirium-sandbox.com/v1/webhooks/subscriptions
List all webhook subscriptions
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve a list of all active webhook subscriptions for your account.
Request
GET /webhooks/subscriptions
Example Response
{
"subscriptions": [
{
"id": "sub_abc123def456",
"url": "https://your-server.com/webhooks/lirium",
"events": ["order-closed", "order-updated"],
"created_at": "2025-01-05T12:00:00Z"
},
{
"id": "sub_xyz789ghi012",
"url": "https://your-server.com/webhooks/customers",
"events": ["customer-state-changed", "customer-requirement-rejected"],
"created_at": "2025-01-04T10:30:00Z"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
| id | string | Unique identifier for the subscription |
| url | string | The HTTPS URL where events are sent |
| events | array | List of subscribed event types |
| created_at | timestamp | When the subscription was created |
