---
title: "Show template"
method: GET
path: "/templates/{template}"
tags: ["Template Operations"]
---

# Show template

`GET /templates/{template}`

<small>Requires an API token with the **Template Reader** role.</small>

Shows details of a single [template](/#templates).

> Entries with the `multi_select` value type are only included in the `dynamic_fields` and `metadata_values`
> lists if you are using API [version](/#versioning) `2026-04-02` or newer.

## Path parameters

- `template` string, required

## Response `200`

`TemplateDetailResource`

- object
  - `data` TemplateDetailResource, required
    - `uuid` string, required
    - `name` string, required
    - `description` string, nullable, required
    - `locale` string, required
    - `published` boolean, required
    - `signature_type` 'aes' | 'qes' | 'ses', required
    - `sequential_signing` boolean, required — When true, require setting a `signing_order` for signatories
    - `external_signatory_invitation_message` string, required — This text will be displayed in the email notification sent to users when documents created from this template are ready for signing
    - `created_at` string, date-time, nullable, required
    - `updated_at` string, date-time, nullable, required
    - `archived_at` string, date-time, nullable, required
    - `parties` TemplatePartySnippetResource[], required — The initial set of people and/or organizations that will be included as parties in documents created from this template
      - `uuid` string, required
      - `ref_uuid` string, required — A static reference identifier, allowing parties in documents to be matched their corresponding party in the document's source template.
      - `reference` string, nullable, required — A generic reference for the party
      - `entity_name` string, nullable, required — The actual name of the party. i.e. name of the company or person. May be null if the party was created via the Template's "set later" option
      - `address` string, nullable, required
      - `scope` 'internal' | 'internal_and_external', required
      - `is_internal_party` boolean, required — Indicates whether this party is linked to an account party (internal) or is standalone (external)
      - `created_at` string, date-time, nullable, required
      - `updated_at` string, date-time, nullable, required
    - `teams` TeamSnippetResource[]
      - `uuid` string, required
      - `name` string, required
    - `signatories` SignatoryResource[] — These signatories will be copied into any documents created from this template
      - `uuid` string, required
      - `first_name` string, nullable, required
      - `last_name` string, nullable, required
      - `email` string, nullable, required
      - `mobile_phone` string, nullable, required — Mobile phone number, in E.164 format
      - `title` string, nullable, required
      - `profile_photo_url` string, nullable, required
      - `signing_order` integer, nullable, required — When sequential signing is enabled, signatories will sign in ascending order of their `signing_order`
      - `has_account_user` boolean, required — `true` if the signatory has a fynk user belonging to your account
      - `party_uuid` string, nullable, required — UUID of the party that the signatory signs for
    - `dynamic_fields` DynamicFieldResource[]
      - `uuid` string, required
      - `ref_uuid` string, required — A static reference identifier, allowing dynamic fields in documents to be matched their corresponding field in the document's source template.
      - `type` 'id' | 'uuid' | 'bool' | 'date' | 'duration' | 'email' | 'list' | 'number' | 'currency' | 'currency_duration' | 'clause' | 'select' | 'multi_select' | 'text' | 'textarea' | 'timestamp' | 'array' | 'enum', required
      - `name` string, required
      - `scope` 'internal' | 'internal_and_external', required
      - `settings` MultiFieldSettingsResource, required
        - `currencies` string[], required — For `currency` or `currency_duration` fields, defines the currencies that can be assigned to the field's values
      - `autofill_type` 'document_created_date' | 'document_review_date' | 'document_signing_date', required
      - `format` DynamicFieldFormatResource, required
        - `decimals` integer, required
        - `decimal_separator` string, required
        - `thousands_separator` string, required
      - `select_values` string[], nullable, required — When `type` is "select" or "multi_select", defines the possible values for `value`
      - `is_mandatory` boolean, required
      - `question` string, nullable, required
      - `question_external` string, nullable, required — Question variant for external users
      - `value` union, required — The field's value, if it has been set
        - string
        - boolean
        - unknown[]
          - unknown
      - `order` integer, nullable, required
    - `metadata_values` MetadataValueResource[]
      - `uuid` string, required
      - `metadata` MetadataResource, required
        - `uuid` string, required
        - `type` 'system_autofilled' | 'system_computed' | 'system' | 'system_reference' | 'account', required
        - `value_type` 'id' | 'uuid' | 'bool' | 'date' | 'duration' | 'email' | 'list' | 'number' | 'currency' | 'currency_duration' | 'clause' | 'select' | 'multi_select' | 'text' | 'textarea' | 'timestamp' | 'array' | 'enum', required
        - `name` string, required
        - `display_name` string, required
        - `settings` MultiFieldSettingsResource, required
          - `currencies` string[], required — For `currency` or `currency_duration` fields, defines the currencies that can be assigned to the field's values
        - `select_values` string[], nullable, required — When `value_type` is `select`, defines the possible values for the metadata's value
        - `always_exists` boolean, required
        - `description` string, nullable, required
        - `keywords` string, nullable, required — Keywords to help with metadata identification.
        - `prompt` string, nullable, required — An AI prompt used for metadata extraction.
        - `is_contract_value` boolean, required — If true, this metadata will be included in the calculated "contract value" if it is present in a document. Only relevant when the value type is one of: `currency`, `currency_duration`
        - `relevant_document_type_uuids` string[], nullable, required — UUIDs of document types this metadata is relevant for. `null` means not relevant to any. `[]` means relevant to all.
      - `reference_dynamic_field_uuid` string, nullable, required
      - `value_source` 'user' | 'ai_analysis' | 'computed' | 'autofilled' | 'dynamic_field' | 'linked_document', required
      - `value` union, required — The metadata's value
        - string
        - boolean
        - unknown[]
          - unknown
      - `value_currency_monthly` string, nullable, required
      - `value_currency_yearly` string, nullable, required
      - `computed_status` 'missing_information' | 'conflicting_information' | 'not_applicable' | 'computed', required
      - `computed_value` union, required
        - string
        - boolean
        - unknown[]
          - unknown
      - `is_attached` boolean, required
      - `computed_at` string, date-time, nullable, required
    - `tags` TagResource[]
      - `uuid` string, required
      - `name` string, nullable, required
      - `color` string, required — Hex color code for the color that the tag has been assigned

## Other responses

- `401` — Unauthenticated
- `403` — Authorization error
- `404` — Not found

---

[API](https://skmtc.dev/fynk/apis/fynk-api-reference.md) · [All operations](https://skmtc.dev/fynk/apis/fynk-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fynk/fynk-api-reference/revisions/9657a6757f59/schema)
