Get Action by ID
GET/conversation-ai/agents/:agentId/actions/:actionId
Retrieves detailed information about a specific action using its unique identifier. Returns the action configuration, associated agents, and performance metrics.
Request
Version stringrequired
API Version
Available options
2021-04-15actionId stringrequired
The unique identifier of the action ID Attached to the agent
agentId stringrequired
Success
- application/json
- Schema
- Example (auto)
Schema
dataobjectrequired
Action details
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
}