Docs: Add webhook documentation (#588)
This commit is contained in:
parent
97ad512c21
commit
f76ba889dd
4 changed files with 61 additions and 0 deletions
61
docs/webhooks/add-webhooks-to-chatwoot.md
Normal file
61
docs/webhooks/add-webhooks-to-chatwoot.md
Normal file
|
@ -0,0 +1,61 @@
|
|||
---
|
||||
path: "/docs/webhooks"
|
||||
title: "Webhooks"
|
||||
---
|
||||
|
||||
Webhooks are HTTP callbacks which can be defined for every account. They are triggered by events like message creation in Chatwoot. You can create more than one webhook for an account. Currently webhooks support only `message_created` event
|
||||
|
||||
**Step 1**. Click on Integrations link is settings sidebar. Click on "Configure" button.
|
||||
|
||||
![integrations](./images/integrations.png)
|
||||
|
||||
**Step 2**. You will see the list of webhooks you have already added to the account.
|
||||
|
||||
![configure](./images/configure.png)
|
||||
|
||||
**Step 3**. Click on the "Add new webhook", it will display a modal where you can input the URL to which the POST request should be sent.
|
||||
|
||||
![add-a-webhook](./images/add-a-webhook.png)
|
||||
|
||||
Chatwoot currently supports webhooks for message creation only. Once a new message is created in the any of the inboxes of the account, it will send a POST request with the following payload to the configured URLs.
|
||||
|
||||
### A sample webhook payload
|
||||
|
||||
```json
|
||||
{
|
||||
|
||||
"event": "message_created", // The name of the event
|
||||
"id": "1", // Message ID
|
||||
"content": "Hi", // Content of the message
|
||||
"created_at": "2020-03-03 13:05:57 UTC", // Time at which the message was sent
|
||||
"message_type": "incoming", // This will have a type incoming or outgoing. Incoming messages are sent by the user from the widget, Outgoing messages are sent by the agent to the user.
|
||||
"source_id": "", // This would the external id if the inbox is a Twitter or Facebook integration.
|
||||
"sender": { // This would provide the details of the agent who sent this message
|
||||
"id": "1",
|
||||
"name": "Agent",
|
||||
"email": "agent@example.com"
|
||||
},
|
||||
"contact": { // This would provide the details of the user who sent this message
|
||||
"id": "1",
|
||||
"name": "contact-name"
|
||||
},
|
||||
"conversation": { // This would provide the details of the conversation
|
||||
"display_id": "1", // This is the ID of the conversation which you can see in the dashboard.
|
||||
"additional_attributes": {
|
||||
"browser": {
|
||||
"device_name": "Macbook",
|
||||
"browser_name": "Chrome",
|
||||
"platform_name": "Macintosh",
|
||||
"browser_version": "80.0.3987.122",
|
||||
"platform_version": "10.15.2"
|
||||
},
|
||||
"referer": "http://www.chatwoot.com",
|
||||
"initiated_at": "Tue Mar 03 2020 18:37:38 GMT-0700 (Mountain Standard Time)"
|
||||
}
|
||||
},
|
||||
"account": { // This would provide the details of the account
|
||||
"id": "1",
|
||||
"name": "Chatwoot",
|
||||
}
|
||||
}
|
||||
```
|
BIN
docs/webhooks/images/add-a-webhook.png
Normal file
BIN
docs/webhooks/images/add-a-webhook.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 163 KiB |
BIN
docs/webhooks/images/configure.png
Normal file
BIN
docs/webhooks/images/configure.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 284 KiB |
BIN
docs/webhooks/images/integrations.png
Normal file
BIN
docs/webhooks/images/integrations.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 255 KiB |
Loading…
Reference in a new issue