cURL
curl --request GET \ --url https://api.pocketflows.com/triggers/{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 trigger
The executions of the trigger
Show child attributes
The ID of the trigger execution
The customer executing through the trigger
The scheduled time for the next step of the trigger execution
The index of the next step of the trigger to execute
The ID of the current step
The status of the execution
pending
in_progress
finished
failed
The time when the execution failed
The reason for failure
The time when the execution finished
The reason for finishing