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

ParameterExampleRequiredDescriptionParameter type
since123124122OptionalEpoch time in microseconds of the first message to be retrievedQuery
limit25OptionalRestrict the maximum number of webhooks to be retrievedQuery

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
    }
  ]
}