List of Webhooks
Retrieve a list of Webhooks
Parameter
Accessible via URL https://api.channel.io/open/v5/webhooks
and HTTP GET
This method accepts
application/json
Parameter | Example | Required | Description | Parameter type |
---|---|---|---|---|
since | 123124122 | Optional | Epoch time in microseconds of the first message to be retrieved | Query |
limit | 25 | Optional | Restrict the maximum number of webhooks to be retrieved | Query |
Example
GET https://api.channel.io/open/v5/webhooks
Response
Returns a list of Webhook
objects.
{
"next": 1656032153343,
"webhooks": [
{
"id": "string",
"channelId": "string",
"name": "string",
"url": "string",
"token": "string",
"createdAt": 1656032153401,
"scopes": [
"userChatOpened"
],
"apiVersion": "string",
"lastBlockedAt": 1656032153401,
"blocked": true
}
]
}
Updated 12 months ago