List of Webhooks
Retrieve a list of Webhooks
Parameter
Accessible via URL https://api.channel.io/open/v4/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/v4/webhooks
Response
Returns a list of Webhook
objects.
{
"next": 1624414654585,
"webhooks": [
{
"id": "string",
"channelId": "string",
"name": "string",
"url": "string",
"token": "string",
"keywords": [
"string"
],
"createdAt": 1624414654616,
"watchUserChats": true,
"watchGroups": true,
"apiVersion": "string",
"lastBlockedAt": 1624414654616,
"blocked": true
}
]
}
Updated about 1 year ago