Skip to main content
GET
/
v1
/
webhooks
List Webhook Subscriptions
curl --request GET \
  --url https://api.example.com/v1/webhooks \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "created_at": "2024-01-15T10:30:00Z",
      "description": "Production webhook endpoint",
      "event_types": [
        "patient_created",
        "patient_stage_changed"
      ],
      "id": "550e8400-e29b-41d4-a716-446655440016",
      "is_active": true,
      "updated_at": "2024-01-15T10:30:00Z",
      "url": "https://example.com/webhooks/solum"
    }
  ],
  "pagination": {
    "has_more": true,
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response

List response for webhook subscriptions

data
WebhookSubscription · object[]
required
pagination
Pagination · object
required

Pagination information for list responses.

Fields:

  • has_more: Whether more items exist beyond this page
  • total: Total number of items across all pages
  • page: Current page number (1-based)
  • limit: Number of items per page