Adding a Webhook for notifications
Get notitifications of events happening in your DialogForm account.
Available notifications
1. Chat completed
// The following JSON data is sent
// * `identifier` - The user identifier provided in the share link
// * `flowId` - Self explanatory
// * `score` - The user's score, if any
{
"type": "completed",
"data": {
"flowId": number,
"identifier": string,
"score": number or null
}
}2. Chat deleted by admin
3. Admin provides some feedback on a user response
Adding a Webhook
Last updated