Description
This endpoint allows you to retrieve the execution status and details of a Sendflow workflow that was triggered. Use the request_id that was returned when you triggered the Sendflow 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 Sendflow 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 Sendflow delivery report data containing the following fields:
The request ID that was used to query this report.
The unique execution ID for this Sendflow workflow run.
The current execution status of the Sendflow workflow.
Timestamp indicating when the status was last updated.
The email address associated with this Sendflow execution (if applicable).
The phone number associated with this Sendflow execution (if applicable).
Additional remarks or notes about the execution status.
The workspace ID associated with this Sendflow execution.
200-Success
400-Bad Request
401-Unauthorized
404-Not Found
500-Internal Server Error
{
"success" : true ,
"message" : "Sendflow 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" : "Sendflow executed successfully" ,
"workspace_id" : "workspace_123"
}
}