Skip to main content
GET
https://api-ai.zixflow.com
/
api
/
data
/
transflow
/
v1
/
delivery-report
Get Transflow Delivery Report
curl --request GET \
  --url https://api-ai.zixflow.com/api/data/transflow/v1/delivery-report \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-workspace-id: <x-workspace-id>'
{
  "success": true,
  "message": "Transflow delivery report retrieved successfully",
  "data": {
    "request_id": "8cf12de6-0504-41f9-b576-cbdb20b3e275",
    "execution_id": "exec_123456789",
    "status": "completed",
    "statusAt": "2024-01-15T10:30:00Z",
    "email": "user@example.com",
    "phone": "919876543210",
    "remark": "Transflow executed successfully",
    "workspace_id": "workspace_123"
  }
}

Description

This endpoint allows you to retrieve the execution status and details of a Transflow workflow that was triggered. Use the request_id that was returned when you triggered the Transflow to get the delivery report.

Headers

x-api-key
string
required
Your API key for authentication.
x-workspace-id
string
required
Your workspace ID for authentication.

Query Parameters

request_id
string
required
The unique request ID that was returned when the Transflow was triggered. This ID is used to track the execution status of the workflow.

Response

success
boolean
Indicates whether the API call was successful.
message
string
Success or error message from the API.
data
object
The Transflow delivery report data containing the following fields:
data.request_id
string
The request ID that was used to query this report.
data.execution_id
string
The unique execution ID for this Transflow workflow run.
data.status
string
The current execution status of the Transflow workflow.
data.statusAt
string
Timestamp indicating when the status was last updated.
data.email
string
The email address associated with this Transflow execution (if applicable).
data.phone
string
The phone number associated with this Transflow execution (if applicable).
data.remark
string
Additional remarks or notes about the execution status.
data.workspace_id
string
The workspace ID associated with this Transflow execution.
{
  "success": true,
  "message": "Transflow delivery report retrieved successfully",
  "data": {
    "request_id": "8cf12de6-0504-41f9-b576-cbdb20b3e275",
    "execution_id": "exec_123456789",
    "status": "completed",
    "statusAt": "2024-01-15T10:30:00Z",
    "email": "user@example.com",
    "phone": "919876543210",
    "remark": "Transflow executed successfully",
    "workspace_id": "workspace_123"
  }
}