- Introductions
- Quick Start
- Get the Authorization token
- Error Codes
- Workflow
- Webhooks of the Info of Predictive Dialer System
- Create a New WorkFlow TaskPOST
- Obtain the List of Workflow TemplatesGET
- Add lists to an workflow taskPOST
- Update the List Info of Workflow TaskPOST
- Cancel the processes for a specific listPOST
- Notification of Call Completion in Workflow (Debt Collection/Marketing/E-commerce)POST
- Notification of Call Completion in Workflow(Info Check)POST
- Custom API Node Data PushPOST
- Verify the Custom API Node Data PushPOST
- Stop the Workflow TaskPOST
- Obtain the Workflow Task ListGET
- Obtain the Subtask List of the WorkflowGET
- Obtain the Outbound Task List of WorkflowPOST
- Obtain the Outbound Task Details of Workflow(Collection/Telemarketing/E-commerce)POST
- Obtain the Outbound Task Details of Workflow(Info Check)POST
- Obtain Call Information and Recording Links by callee/caseid and taskid/workflow_idGET
- Obtian Call Information and Recording Link by Call IDGET
- Obtain All the Recordings of a Single Number in the WorkflowGET
- Query workflow_id using case_id/calleePOST
- Notification for Workflow List CompletionPOST
- Notification of Workflow Status ChangePOST
- Obtain the WABA Tasks List of WorkflowGET
- Obtain the WABA Task Details of WorkflowGET
- Notification of WABA Message Status Alteration in WorkflowPOST
- Chatbot Session End Notification in WorkflowPOST
Query workflow_id using case_id/callee
Production
https://api.airudder.com
Production
https://api.airudder.com
POST
/service/cloud/workflow/detailinstances
Request
Header Params
Authorization
string
required
Default:
Token 3Ksb9EkFDQHBhAbvYDTq4+pGGjNRAuLtPF9MMt9E97hX+OgLWTmeZtdGZyjR+YqU
Content-Type
string
required
Default:
application/json
User-Agent
string
optional
Default:
Airudder
Body Params application/json
case_id
string
optional
callee
string
optional
start_time
string
required
end_time
string
required
Example
{
"callee": "+8613711112222",
"start_time": "2023-09-01 00:00:00+08:00",
"end_time": "2023-09-14 00:00:00+08:00"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.airudder.com/service/cloud/workflow/detailinstances' \
--header 'Authorization;' \
--header 'User-Agent: Airudder' \
--header 'Content-Type: application/json' \
--data-raw '{
"callee": "+8613711112222",
"start_time": "2023-09-01 00:00:00+08:00",
"end_time": "2023-09-14 00:00:00+08:00"
}'
Responses
🟢200success
application/json
Body
code
integer
required
status
string
required
data
object
required
rows
array [object {4}]
required
Example
{
"data": {
"rows": [
{
"workflow_id": "1d06628dd08f44839191657d857f4a07",
"workflow_name": "wd-008",
"create_time": "2023-09-11T06:19:27Z",
"status": "cancelled"
},
{
"workflow_id": "51b9e513e93248a497bf7ce85f459ffa",
"workflow_name": "wd-002",
"create_time": "2023-09-11T05:07:24Z",
"status": "cancelled"
},
{
"workflow_id": "b4ee0e33fc9b4e648ea2a6d0703acf7e",
"workflow_name": "wd-009",
"create_time": "2023-09-11T07:28:07Z",
"status": "finished"
},
{
"workflow_id": "f6caf155b8ec465eaa3b1da5ecb6515c",
"workflow_name": "wd-010",
"create_time": "2023-09-11T11:31:42Z",
"status": "finished"
}
]
},
"status": "OK",
"code": 200
}
Modified at 2024-03-12 09:30:05