curl --request GET \
--url https://prod.featherhq.com/api/v1/workflow/{workflowId}/executions \
--header 'Authorization: Bearer <token>'{
"executions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "CREATED",
"temporalWorkflowId": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"customerLeadId": "<string>",
"metadata": {
"firstName": "<string>",
"lastName": "<string>"
},
"disposition": "COULD_NOT_CONNECT",
"definition": {
"steps": [
{
"type": "CALL",
"order": 2,
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"delayInSecs": 0,
"finishOn": [],
"leaveVoicemail": false
}
]
},
"stepExecutions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflowExecutionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "PENDING",
"type": "CALL",
"order": 123,
"delayInSecs": 123,
"finishOn": [
"COULD_NOT_CONNECT"
],
"startedAt": "<string>",
"completedAt": "<string>",
"leaveVoicemail": true,
"disposition": "COULD_NOT_CONNECT",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentCall": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"callStartedAt": "<string>",
"callEndedAt": "<string>",
"callDuration": 123,
"callEndedReason": "COULD_NOT_CONNECT",
"recordingUrl": "<string>",
"summary": "<string>"
}
}
],
"createdAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}List agent workflow executions
curl --request GET \
--url https://prod.featherhq.com/api/v1/workflow/{workflowId}/executions \
--header 'Authorization: Bearer <token>'{
"executions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflowId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "CREATED",
"temporalWorkflowId": "<string>",
"startedAt": "<string>",
"completedAt": "<string>",
"customerLeadId": "<string>",
"metadata": {
"firstName": "<string>",
"lastName": "<string>"
},
"disposition": "COULD_NOT_CONNECT",
"definition": {
"steps": [
{
"type": "CALL",
"order": 2,
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"delayInSecs": 0,
"finishOn": [],
"leaveVoicemail": false
}
]
},
"stepExecutions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflowExecutionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "PENDING",
"type": "CALL",
"order": 123,
"delayInSecs": 123,
"finishOn": [
"COULD_NOT_CONNECT"
],
"startedAt": "<string>",
"completedAt": "<string>",
"leaveVoicemail": true,
"disposition": "COULD_NOT_CONNECT",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentCall": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"callStartedAt": "<string>",
"callEndedAt": "<string>",
"callDuration": 123,
"callEndedReason": "COULD_NOT_CONNECT",
"recordingUrl": "<string>",
"summary": "<string>"
}
}
],
"createdAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by execution status
CREATED, RUNNING, COMPLETED, FAILED, CANCELLED, PAUSED Filter by customer lead ID