Skip to main content
POST
/
automations
/
executions
/
{executionId}
/
continue
Continue execution (standby)
curl --request POST \
  --url http://api.gu1.ai/automations/executions/{executionId}/continue \
  --header 'Authorization: Bearer <token>'

Overview

After a standby pause, continue the same execution. Optional JSON payload is merged onto the snapshot before the engine refreshes context from the database.

POST by execution ID

POST https://api.gu1.ai/automations/executions/:executionId/continue
Content-Type: application/json
Body (optional): { "payload": { ... } } Authenticated with the org’s API key or session.
GET https://api.gu1.ai/automations/executions/:executionId/continue?token=<callbackToken>
No session required; callbackToken must match the execution row. Returns an HTML confirmation page.

POST by automation ID

POST https://api.gu1.ai/automations/:id/continue
Content-Type: application/json
Resumes the most recent waiting execution for that automation. Optional { "payload": { ... } }.

Response (JSON routes)

200{ "success": true, "waiting"?: boolean, "executionId"?, "completed"?, "continuedToStep"?, ... }