Retrieve a Forward Schedule by ID.
GET /api/v1/forward/schedules/{schedule_id}
Returns a complete Schedule object. Archived schedules remain queryable by ID.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
schedule_id | string | Yes | Forward Schedule ID. |
Example request
Example response
HTTP 200 OK
Response fields
Returns the Schedule object.
The execution.max_attempts field in the response is the public execution policy. Default is 1, allowed values are 1 or 2. A value of 2 means the server may automatically retry once after the first execution fails. Whether a retry actually occurred is determined by the attempt field on Schedule Run objects.
Errors
| HTTP | Type | Code | Trigger |
|---|---|---|---|
| 401 | authentication_error | authentication_required | PAT or SAT invalid or expired. |
| 404 | not_found_error | schedule_not_found | Schedule does not exist or is not visible to the caller. |
Notes
statusis onlyactiveorpaused; archive state is expressed byarchived_at.- Schedule objects do not expose runtime-private fields such as Vaults, Memory Stores, or raw environment variables.