GET /api/v1/forward/templates
Lists Forward template baselines. Archived templates are excluded unless requested.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT> |
Query parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
status | string | No | - | Filter by active or archived. |
limit | integer | No | 20 | Items per page. Maximum 100. |
after_id | string | No | - | Cursor for records after the given Template ID. Cannot be used with before_id. |
before_id | string | No | - | Cursor for records before the given Template ID. Cannot be used with after_id. |
Example request
Example response
HTTP 200 OKResponse fields
| Field | Type | Description |
|---|---|---|
data | array | Template objects on the current page. |
first_id | string|null | ID of the first record on this page. |
last_id | string|null | ID of the last record on this page. |
has_more | boolean | Whether more records remain. |
Errors
| HTTP | Type | Trigger |
|---|---|---|
| 400 | invalid_request_error | Invalid pagination parameters or limit above 100. |
| 401 | authentication_error | PAT invalid or expired. |
| 403 | permission_error | Not authorized for this resource. |
Notes
- Results are scoped to the authenticated account.
- Use
after_idorbefore_idfor cursor pagination, not both.