List Actions for an Agent
GET/conversation-ai/agents/:agentId/actions/list
List for actions for an agent
Request
Version stringrequired
API Version
Available options
v3agentId stringrequired
Success
- application/json
- Schema
- Example (auto)
Schema
dataobject[]required
Grouped actions by type
successbooleanrequired
Success status of the request
{
"data": [
{
"id": "actionId123",
"name": "Trigger Workflow",
"type": "triggerWorkflow",
"agentId": "agentId123",
"details": {
"workflowIds": [
"workflow123",
"workflow456"
],
"triggerCondition": "When user requests appointment",
"triggerMessage": "Workflow triggered successfully"
}
}
],
"success": true
}