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 } ] }
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
The response is of type object.
object