> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Continue execution (standby)

> Retoma uma execução de automação pausada no gu1 por ID ou link de callback, com payload opcional mesclado ao snapshot de evento salvo.

## 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 with token (email/SMS link)

```
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"?, ... }`
