Webhooks

Retrieve Webhook details

Retrieve webhook details by id.

get/webhooks/{webhookId}

Path parameters

webhookIdstring required

The unique webhook you wish to retreive details on.

Response

Success

webhookIdstring

Unique identifier of the webhook

createdAtstring date-time

When an webhook was created, presented in ISO-8601 format.

eventsstring[]

A list of events that will trigger the webhook.

urlstring

URL of the webhook

Example response

{
  "createdAt": "2019-06-24T11:45:01.109Z",
  "webhookId": "webhook_XXXXXXXXXXXXXXX",
  "events": "[\"video.encoding.quality.completed\"]",
  "url": "http://clientnotificationserver.com/notif?myquery=query"
}

Changes