---
title: "Clone global template"
method: POST
path: "/global-templates/clone"
tags: ["Template Operations"]
---

# Clone global template

`POST /global-templates/clone`

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

Clones a global template into your account. The cloned template will be published by default so that you can
immediately create documents from it using the
[create document from template](/operations/v1.documents.create-from-template) endpoint.

The `terms_confirmed` field must be set to `true` to acknowledge that you have read and accepted the terms
associated with the global template (such as author attribution and licensing requirements).

## Request body

- CloneGlobalTemplateRequest
  - `global_template_uuid` string, uuid, required — UUID of the global template to clone into your account
  - `name` string, nullable — Optional name for the cloned template. If omitted, the name of the global template will be used
  - `team_uuids` string[], nullable — UUIDs of the teams to assign to the cloned template
  - `published` boolean, nullable — Whether to publish the cloned template immediately. Defaults to true
  - `terms_confirmed` boolean, required — Must be true to confirm acceptance of the global template's terms (author attribution, licensing)

## Response `201`

`TemplateMinimalResource`

- object
  - `data` TemplateMinimalResource, required
    - `uuid` string, required
    - `name` string, required
    - `locale` string, required
    - `published` boolean, required
    - `signature_type` 'aes' | 'qes' | 'ses', required
    - `sequential_signing` boolean, required — When true, require setting an order for signatures
    - `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
    - `links` object, required
      - `show` string, required

## Other responses

- `401` — Unauthenticated
- `403` — Authorization error
- `422` — Validation error

---

[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)
