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

Notification of WABA Message Status Alteration in Workflow

Production
https://api.airudder.com
Production
https://api.airudder.com
POST
The integrating party should provide this URL for configuration by our side.
Proactively notify the integration party when the WABA message status changes sent from the WABA Template node within the Workflow. Each status change of a WABA message will be notified.
If the URL response is abnormal, we will retry every minute, with a maximum of 5 retry failures before ceasing notifications. Please respond within 10 seconds of receiving the data, while asynchronously processing data storage and subsequent logic.

Request

Header Params
Content-Type
string 
required
Default:
application/json
User-Agent
string 
optional
Default:
Airudder
Body Params application/json
workflow_id
string 
required
Execute the workflow task ID that sends the WABA message.
workflow_name
string 
required
Execute the workflow task name that sends the WABA message.
nodetask_id
string 
required
Execute the corresponding node ID within the workflow task that sends the WABA message.
nodetask_name
string 
required
Execute the corresponding node name within the workflow task that sends the WABA message.
waba_task_id
string 
required
Execute the WABA task ID that sends the WABA message.
wfdetail_uuid
string 
required
The unique identifier of the list within the workflow can be ignored.
timestamp
integer 
required
The timestamp of the request sent this time.
status
enum<string> 
required
The status of the WABA message.
Allowed values:
waitsenddeliveryreadrepliedfailed
msg_id
string 
required
The unique identifier of the WABA message.
send_time
string 
required
The sending time of the WABA message, in UTC time.
waba_template_name
string 
required
The name of the template used to send the WABA message.
waba_template_id
integer 
required
The ID of the template used to send the WABA message.
channel_id
string 
required
The channel ID of the template used to send the WABA message.
callee
string 
required
The customer's phone number receiving the WABA message.
variables
object 
required
The variables uploaded when creating the workflow.
date
string 
optional
Examples of variables.
name
string 
optional
Examples of variables.
project
string 
optional
Examples of variables.
Example
{
    "workflow_id": "4cb9db206ac0xxxxxxxxxx15e4e613d2",
    "workflow_name": "0970_0415_1",
    "nodetask_id": "8fb437c7c413xxxxxxxxxx35b09b5a3",
    "nodetask_name": "WABA Template1_232fe6",
    "waba_task_id": "602ff2fc65e5xxxxxxxxxx9b4ee9736e",
    "wfdetail_uuid": "4a786086d05a4xxxxxxxxxxfb8abb1de7",
    "timestamp": 1744687206,
    "status": "delivery",
    "msg_id": "f4d594881abxxxxxxxxxx029e63f055",
    "send_time": "2025-04-15T03:20:00Z",
    "waba_template_name": "send_card_for_sales_0331",
    "waba_template_id": 288,
    "channel_id": "6289xxxxx1234",
    "callee": "+6289xxxxxxxx234",
    "variables": {
        "date": "2025-05-01",
        "name": "will Smith",
        "project": "Voicebot"
    }
}

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.comThe integrating party should provide this URL for configuration by our side.' \
--header 'User-Agent: Airudder' \
--header 'Content-Type: application/json' \
--data-raw '{
    "workflow_id": "4cb9db206ac0xxxxxxxxxx15e4e613d2",
    "workflow_name": "0970_0415_1",
    "nodetask_id": "8fb437c7c413xxxxxxxxxx35b09b5a3",
    "nodetask_name": "WABA Template1_232fe6",
    "waba_task_id": "602ff2fc65e5xxxxxxxxxx9b4ee9736e",
    "wfdetail_uuid": "4a786086d05a4xxxxxxxxxxfb8abb1de7",
    "timestamp": 1744687206,
    "status": "delivery",
    "msg_id": "f4d594881abxxxxxxxxxx029e63f055",
    "send_time": "2025-04-15T03:20:00Z",
    "waba_template_name": "send_card_for_sales_0331",
    "waba_template_id": 288,
    "channel_id": "6289xxxxx1234",
    "callee": "+6289xxxxxxxx234",
    "variables": {
        "date": "2025-05-01",
        "name": "will Smith",
        "project": "Voicebot"
    }
}'

Responses

🟢200success
application/json
Body
object {0}
Example
{}
Modified at 2025-05-06 07:50:15
Previous
Obtain the WABA Task Details of Workflow
Next
Chatbot Session End Notification in Workflow
Built with