How do I set up the sipgate AI Assist webhook?
Set up the AI Assist webhook in the sipgate desktop app to automatically send AI Assist results from a channel to external systems.
Prerequisites
Where do I set up the webhook?
Payload format
{
"callHeadline": "...",
"call": {
"id": "...",
"caller": "...",
"callee": "...",
"startTime": 0,
"endTime": 0,
"duration": 0,
"direction": "inbound"
},
"channel": {
"id": "...",
"name": "..."
},
"transcriptions": [
{ "speaker": "caller", "startTime": 0, "endTime": 0, "text": "..." }
],
"summary": "...",
"actionItems": [{ "id": "...", "text": "..." }],
"smallTalkItems": [{ "id": "...", "topic": "...", "description": "..." }],
"smartAnswers": [{ "id": "...", "question": "...", "answer": "..." }]
}Last updated

