cURL
curl --request GET \ --url https://api.pocketflows.com/campaigns/{id}/executions \ --header 'Authorization: Basic <encoded-value>'
{ "executions": [ { "id": "<string>", "customer": "<string>", "scheduled_at": "<string>", "step_count": 123, "current_step_id": "<string>", "status": "pending", "failed_at": "<string>", "failed_reason": "<string>", "finished_at": "<string>", "finished_reason": "<string>" } ] }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The ID of the campaign
The executions of the campaign
Show child attributes
The ID of the execution
The customer executing through the campaign
The scheduled time for the next step to execute
The index of the next step to execute
The ID of the current step
The status of the execution
pending
in_progress
finished
failed
The time when the execution failed in ISO 8601 format
The reason the execution failed
The time when the execution finished in ISO 8601 format
The reason the execution finished