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.
Your API key for authentication.
Your workspace ID for authentication.
Query Parameters
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
Indicates whether the API call was successful.
Success or error message from the API.
The Transflow delivery report data containing the following fields:
The request ID that was used to query this report.
The unique execution ID for this Transflow workflow run.
The current execution status of the Transflow workflow.
Timestamp indicating when the status was last updated.
The email address associated with this Transflow execution (if applicable).
The phone number associated with this Transflow execution (if applicable).
Additional remarks or notes about the execution status.
The workspace ID associated with this Transflow execution.
200-Success
400-Bad Request
401-Unauthorized
404-Not Found
500-Internal Server Error
{
"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"
}
}