- Accounts
- Account Users
- AgentBots
- Users
- Inbox API
- Contacts API
- Conversations API
- Messages API
- Contact Labels
- CSAT Survey Page
- Account AgentBots
- Agents
- Canned Responses
- Canned Response
- Custom Attributes
- Contacts
- Contact
- Automation Rule
- Help Center
- Conversations
- Conversation Assignment
- Conversation Labels
- Inboxes
- Messages
- Integrations
- Profile
- Teams
- Custom Filters
- Webhooks
- Reports
List all webhooks
GET
/api/v1/accounts/{account_id}/webhooks
Webhooks
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/accounts//webhooks'
Response Response Example
200 - Example 1
[
{
"id": 0,
"url": "string",
"subscriptions": [
"conversation_created"
],
"account_id": 0
}
]
Request
Path Params
account_id
stringÂ
required
Responses
🟢200OK
application/json; charset=utf-8
Body
Array of webhook objects
array of:
id
numberÂ
optional
url
stringÂ
optional
subscriptions
array[string]
optional
Allowed values:
conversation_createdconversation_status_changedconversation_updatedcontact_createdcontact_updatedmessage_createdmessage_updatedwebwidget_triggered
account_id
numberÂ
optional
🟠401Unauthorized