List all webhooks
GET
/webhooks
Webhooks
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://ws.api.video/webhooks'
Response Response Example
{
"data": [
{
"createdAt": "2021-01-08T14:12:18.000Z",
"events": [
"video.encoding.quality.completed"
],
"url": "http://clientnotificationserver.com/notif?myquery=query",
"webhookId": "webhook_XXXXXXXXXXXXXXX"
},
{
"createdAt": "2021-01-12T12:12:12.000Z",
"events": [
"video.encoding.quality.completed"
],
"url": "http://clientnotificationserver.com/notif?myquery=query2",
"webhookId": "webhook_XXXXXXXXXYYYYYY"
}
],
"pagination": {
"currentPage": 1,
"currentPageItems": 11,
"itemsTotal": 11,
"links": [
{
"rel": "self",
"uri": "https://ws.api.video/webhooks?currentPage=1"
},
{
"rel": "first",
"uri": "https://ws.api.video/webhooks?currentPage=1"
},
{
"rel": "last",
"uri": "https://ws.api.video/webhooks?currentPage=1"
}
],
"pageSize": 25,
"pagesTotal": 1
}
}
Request
Query Params
events
string
optional
Example:
video.encoding.quality.completed
currentPage
integer
optional
Example:
2
pageSize
integer
optional
Example:
30
Responses
Modified at 2023-08-15 05:52:15