Get a single Webhook
Retrieve a single Webhook
Parameter
Accessible via URL https://api.channel.io/open/v5/webhooks/{id}
and HTTP GET
This method accepts
application/json
Parameter | Example | Required | Description | Parameter type |
---|---|---|---|---|
id | 1004 | Required | ID of Webhook | Path |
Example
GET https://api.channel.io/open/v5/webhooks/1004
Response
Returns a Webhook
object.
{
"webhook": {
"id": "string",
"channelId": "string",
"name": "string",
"url": "string",
"token": "string",
"createdAt": 1656032153401,
"scopes": [
"userChatOpened"
],
"apiVersion": "string",
"lastBlockedAt": 1656032153401,
"blocked": true
}
}
Updated 9 months ago