AI flow execution status webhooks
1.
ai_flow_execution.started
- this is triggered when the AI Agent picks up a conversation with a contact.{
"type": "ai_flow_execution.started",
"data": {
"id": "aiflw_1234abcd",
"name": "Customer engagement",
"app_type": "AI App",
"status": "<one of draft or published>",
"description": "Engages and solves customer queries."
}
}
2.
ai_flow_execution.escalated
- this is triggered when AI Agent escalates the conversation happening with a contact.{
"type": "ai_flow_execution.escalated",
"data": {
"id": "aiflw_1234abcd",
"name": "Customer engagement",
"app_type": "AI App",
"status": "<one of draft or published>",
"description": "Engages and solves customer queries."
}
}
3.
ai_flow_execution.completed
- this is triggered when AI Agent completes the conversation happening with a contact.{
"type": "ai_flow_execution.completed",
"data": {
"id": "aiflw_1234abcd",
"name": "Customer engagement",
"app_type": "AI App",
"status": "<one of draft or published>",
"description": "Engages and solves customer queries."
}
}
4.
ai_flow_execution.analyzed
- this is triggered when an AI Agent conversation is analyzed.{
"type": "ai_flow_execution.analyzed",
"data": {
"id": "aiflw_1234abcd",
"name": "Customer engagement",
"app_type": "AI App",
"status": "<one of draft or published>",
"description": "Engages and solves customer queries."
}
}