Get a JsonFabrica template
jsonfabrica_get_templateRetrieves the full template record by ID, returning all fields to inspect current details before making updates.
Instructions
Calls GET /v1/templates/{templateId}. Returns the full template record for a known id. Use this instead of jsonfabrica_list_templates when you already have the templateId (e.g. from a prior create/list call); it is also the recommended way to inspect current body/tags/description before calling jsonfabrica_update_template, since update only shows you the fields you send, not the result of merging them with what already exists. Read-only, no side effects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| templateId | Yes | ID of the template to fetch, as returned by create/list. Required. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Template body containing function-call placeholders. | |
| name | Yes | Template name. | |
| tags | No | Tags stored on the template. | |
| status | Yes | "active" unless soft-deleted via jsonfabrica_delete_template. | |
| astCache | No | Server-internal parsed-body cache; opaque to callers. | |
| tenantId | Yes | Owning tenant id. | |
| warnings | No | Non-fatal validation warnings, if any. | |
| createdAt | Yes | ISO-8601 creation timestamp. | |
| updatedAt | Yes | ISO-8601 last-update timestamp. | |
| validated | No | Whether the body passed static template validation. | |
| templateId | Yes | Server-assigned template id. | |
| description | No | Free-text description, if any was stored. |