v1

latestOpenAPI 3.1.02026-07-2489171167.4 KB
Webhooks

Get webhook subscriber by ID

Retrieves detailed information about a webhook subscriber.

get/webhooks/subscriber/{id}

Query parameters

include_event_namesboolean

Whether to include event names in the response

Response

Successfully retrieved subscriber

idstring required

The unique identifier of the webhook subscriber

urlstring uri required

The URL that will receive webhook events

descriptionstring

Optional description of the webhook subscription

eventNamesstring[] required

The names of the events the subscriber is subscribed to

Example response

{
  "id": "123e4567426614174000",
  "url": "https://example.com/webhook-receiver",
  "description": "Notification endpoint for service desk events",
  "eventNames": [
    "sr.created",
    "sr.updated"
  ]
}