Templates · API Reference · Developers
Retrieve check-in templates, including rendered question variables.
Retrieve check-in templates, including rendered question variables.
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/templates/ | List templates |
| GET | /v1/templates/{id}/ | Retrieve a template |
List templates
API keyCLI read-onlyOAuth 2.0defaultPage-number pagination
List templates
This endpoint must accept both API-Key and CLI Bearer once the parity fix ships.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| render_special_vars | boolean | Optional | Render placeholders inline. |
| followup_id | string (uuid) | Optional | — |
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - Retry-After header set |
Code samples
curl -sS -X GET 'https://api.dailybot.com/v1/templates/' -H 'X-API-KEY: $DAILYBOT_API_KEY'Try it
This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.
Retrieve a template
API keyCLI read-onlyOAuth 2.0default
Retrieve a template
This endpoint must accept both API-Key and CLI Bearer once the parity fix ships.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string (uuid) | Required | — |
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - Retry-After header set |
| 404 | Not found or not visible |
Code samples
curl -sS -X GET 'https://api.dailybot.com/v1/templates/{id}/' -H 'X-API-KEY: $DAILYBOT_API_KEY'Try it
This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.