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

# Resume Watch

> Resume a paused watch

## Path Parameters

<ParamField path="id" type="string" required>Watch ID (`wat_*`).</ParamField>

## Response

Returns the updated `Watch` with `status: "active"`.

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.signa.so/v1/watches/wat_01HK7M.../resume" \
    -H "Authorization: Bearer $SIGNA_API_KEY" \
    -H "Idempotency-Key: resume-wat-01HK7M-2026-06-12"
  ```

  ```ts TypeScript theme={null}
  await signa.watches.resume('wat_01HK7M...');
  ```
</RequestExample>
