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 Workflow Task List

Production
https://api.airudder.com
Production
https://api.airudder.com
GET
/service/cloud/workflow/instancelist
Obtain a list of workflow tasks, in reverse order of creation time.

Request

Query Params
page
integer 
optional
Page number; 1 by default. Returns the data of the first page.
Example:
1
size
integer 
optional
Number of entries per page; 20 by default. The maximum value is 200.
Example:
10
start_time
string 
optional
The limited creation start time, the format is 2022-12-12 12:34:56+07:00; No limitation by default.
Example:
2022-09-27T07:58:31Z
end_time
string 
optional
The limited creation end time, the format is 2022-12-12 12:34:56+07:00; No limitation by default.
Example:
2022-10-27T07:58:31Z
Header Params
Authorization
string 
required
Default:
Token 3Ksb9EkFDQHBhAbvYDTq4+pGGjNRAuLtPF9MMt9E97hX+OgLWTmeZtdGZyjR+YqU
Content-Type
string 
required
Default:
application/json
User-Agent
string 
optional
Default:
Airudder

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 GET 'https://api.airudder.com/service/cloud/workflow/instancelist?page=1&size=10&start_time=2022-09-27T07:58:31Z&end_time=2022-10-27T07:58:31Z' \
--header 'Authorization;' \
--header 'User-Agent: Airudder'

Responses

🟢200success
application/json
Body
data
object 
required
lists
array [object {8}] 
required
count
integer 
required
Total number of entries.
status
string 
required
code
integer 
required
Example
{
    "data": {
        "lists": [
            {
                "workflow_id": "37b19c21b9cf482bb8100001",
                "name": "test-2",
                "template_name": "sms-txx-test",
                "start_time": "2022-10-09T07:02:40Z",
                "end_time": "2022-10-09T07:23:45Z",
                "total": 1,
                "status": "cancelled",
                "create_time": "2022-10-09T07:02:40Z"
            },
            {
                "workflow_id": "fe9f194df9ef40b3be100000002",
                "name": "huida_test_sms11",
                "template_name": "huida_func_test",
                "start_time": null,
                "end_time": "2022-10-08T16:59:59Z",
                "total": 1,
                "status": "finished",
                "create_time": "2022-10-07T13:02:46Z"
            }
        ],
        "count": 100
    },
    "status": "OK",
    "code": 200
}
Modified at 2024-05-28 11:08:00
Previous
Stop the Workflow Task
Next
Obtain the Subtask List of the Workflow
Built with