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

# Unpause a schedule

> Resume a paused Forward Schedule.

`POST /api/v1/forward/schedules/{schedule_id}/unpause`

Restores a paused Schedule to `active` status.

## Headers

| Header            | Required | Description                                   |
| ----------------- | -------- | --------------------------------------------- |
| `Authorization`   | Yes      | `Bearer <PAT>`                                |
| `Idempotency-Key` | No       | Optional idempotency key for unsafe requests. |

## Path parameters

| Parameter     | Type   | Required | Description          |
| ------------- | ------ | -------- | -------------------- |
| `schedule_id` | string | Yes      | Forward Schedule ID. |

## Example request

```bash theme={null}
curl -s -X POST 'https://api.qoder.com/api/v1/forward/schedules/sched_019f00112233445566778899aabbccdd/unpause' \
  -H "Authorization: Bearer $QODER_PAT"
```

## Example response

**HTTP 200 OK**

```json theme={null}
{
  "id": "sched_019f00112233445566778899aabbccdd",
  "identity_id": "idn_019eabc123",
  "template_id": "tmpl_support",
  "name": "Daily tech brief",
  "status": "active",
  "paused_reason": null,
  "archived_at": null,
  "updated_at": "2026-06-22T12:10:00Z"
}
```

## Response fields

Returns the updated Schedule object with `status=active`.

## Errors

| HTTP | Type                    | Code                      | Trigger                  |
| ---- | ----------------------- | ------------------------- | ------------------------ |
| 401  | `authentication_error`  | `authentication_required` | PAT invalid or expired.  |
| 404  | `not_found_error`       | `schedule_not_found`      | Schedule does not exist. |
| 409  | `invalid_request_error` | `schedule_archived`       | Schedule is archived.    |

## Notes

* Unpausing does not create a Schedule Run.
* The next planned trigger is recalculated from the Schedule trigger policy.

## Related

<CardGroup cols={2}>
  <Card title="Pause a schedule" icon="pause" href="/cloud-agents/api/forward/schedules/pause" />

  <Card title="Get a schedule" icon="file-lines" href="/cloud-agents/api/forward/schedules/get" />
</CardGroup>
