Get a single Webhook

Retrieve a single Webhook

Parameter

Accessible via URL https://api.channel.io/open/v4/webhooks/{id} and HTTP GET

๐Ÿ“˜

This method accepts application/json

ParameterExampleRequiredDescriptionParameter type
id1004RequiredID of WebhookPath

Example

GET https://api.channel.io/open/v4/webhooks/1004

Response

Returns a Webhook object.

{
  "webhook": {
    "id": "string",
    "channelId": "string",
    "name": "string",
    "url": "string",
    "token": "string",
    "keywords": [
      "string"
    ],
    "createdAt": 1624414654616,
    "watchUserChats": true,
    "watchGroups": true,
    "apiVersion": "string",
    "lastBlockedAt": 1624414654616,
    "blocked": true
  }
}