# DocgenTemplateManager
Reach these methods through the `docgen_template` field on `client::Client`.
## list_docgen_templates
`GET /docgen_templates`
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `DocGenTemplates`
Paginated — `list_docgen_templates(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## create_docgen_templates
`POST /docgen_templates`
**Request body** (`application/json`): `DocGenTemplateCreateRequest`
**Returns:** `DocGenTemplateBase`
## get_docgen_template
`GET /docgen_templates/{template_id}`
| `template_id` | path | `String` | yes |
**Returns:** `DocGenTemplate`
## delete_docgen_template
`DELETE /docgen_templates/{template_id}`
| `template_id` | path | `String` | yes |
**Returns:** no content
## list_docgen_template_tags
`GET /docgen_templates/{template_id}/tags`
| `template_id` | path | `String` | yes |
| `template_version_id` | query | `String` | no |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `DocGenTags`
Paginated — `list_docgen_template_tags(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).
## list_job
`GET /docgen_template_jobs/{template_id}`
| `template_id` | path | `String` | yes |
| `marker` | query | `String` | no |
| `limit` | query | `i64` | no |
**Returns:** `DocGenJobs`
Paginated — `list_job(...)` returns a paginator you drive with `.next().await`, threading the cursor for you. See the [pagination guide](../pagination.md).