AIRUDDER API
  1. Workflow
AIRUDDER API
  • Introductions
  • Quick Start
  • Get the Authorization token
    • Token Authentication and Obtain
      POST
  • Error Codes
    • Error Codes
  • Workflow
    • Webhooks of the Info of Predictive Dialer System
      • Webhook of Predictive Dialer Task Status Changes
      • Webhook of Predictive Dialer Contacts Status Changes
      • Webhook of Predictive Dialer Agents Status Changes
    • Create a New WorkFlow Task
      POST
    • Obtain the List of Workflow Templates
      GET
    • Add lists to an workflow task
      POST
    • Update the List Info of Workflow Task
      POST
    • Cancel the processes for a specific list
      POST
    • 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 Push
      POST
    • Verify the Custom API Node Data Push
      POST
    • Stop the Workflow Task
      POST
    • Obtain the Workflow Task List
      GET
    • Obtain the Subtask List of the Workflow
      GET
    • Obtain the Outbound Task List of Workflow
      POST
    • 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_id
      GET
    • Obtian Call Information and Recording Link by Call ID
      GET
    • Obtain All the Recordings of a Single Number in the Workflow
      GET
    • Query workflow_id using case_id/callee
      POST
    • Notification for Workflow List Completion
      POST
    • Notification of Workflow Status Change
      POST
    • Obtain the WABA Tasks List of Workflow
      GET
    • Obtain the WABA Task Details of Workflow
      GET
    • Notification of WABA Message Status Alteration in Workflow
      POST
    • Chatbot Session End Notification in Workflow
      POST
  1. Workflow

Obtain the Outbound Task List of Workflow

Production
https://api.airudder.com
Production
https://api.airudder.com
POST
/service/cloud/workflow/tasklist
To obtain the all outbound task list information of a workflow instance, during the execution of a workflow task, each Action node will generate a subtask. A subtask may generate multiple outbound tasks (note the distinction between subtasks and outbound tasks).

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
workflow_id
string 
required
Workflow id.
nodetask_id
string 
optional
Workflow node task id.
Example
{
    "workflow_id": "13979a2a26c340448f6c3d10a63a2f14",
    "nodetask_id": "8f6be4c58bb8412c9a7532afc88a6ef8"
}

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/tasklist' \
--header 'Authorization;' \
--header 'User-Agent: Airudder' \
--header 'Content-Type: application/json' \
--data-raw '{
    "workflow_id": "13979a2a26c340448f6c3d10a63a2f14",
    "nodetask_id": "8f6be4c58bb8412c9a7532afc88a6ef8"
}'

Responses

🟢200success
application/json
Body
code
integer 
required
status
string 
required
data
object 
required
rows
array [object {3}] 
required
Example
{
    "data": {
        "rows": [
            {
                "task_id": "1def98dc9c8c72449ab55d6ec22c2e68",
                "start_time": "2023-09-13T03:11:50Z",
                "end_time": "2023-09-13T03:12:45Z"
            }
        ]
    },
    "status": "OK",
    "code": 200
}
Modified at 2024-05-28 11:13:29
Previous
Obtain the Subtask List of the Workflow
Next
Obtain the Outbound Task Details of Workflow(Collection/Telemarketing/E-commerce)
Built with