---
title: "Save a sequence as a template"
method: POST
path: "/v3/sequences/{id}/save-as-template"
tags: ["Sequences"]
---

# Save a sequence as a template

`POST /v3/sequences/{id}/save-as-template`

<small>_Requires the `sequences:write` scope (or a broader one that includes it)._</small>

Creates a new sequence template from an existing sequence

## Path parameters

- `id` integer, required

## Request body

- object
  - `name` string, required — Name for the new template
  - `description` string, nullable — Description for the template
  - `scope` string, nullable — Scope of the template (e.g., team, organization)

## Response `201`

Sequence template created successfully

- object — A sequence template
  - `id` string, uuid — Unique identifier for the template
  - `name` string — Name of the template
  - `description` string, nullable — Description of the template
  - `stepTypes` string[] — Types of steps in the template (e.g. Email, LinkedIn, Call, Task)
  - `isConditional` boolean — Whether the template contains conditional steps

## Other responses

- `400` — Validation failure on the route parameter or request body
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — Organization templates are not available for this account, or caller lacks permission
- `404` — Sequence not found
- `409` — A template with the given name already exists
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/versions/1c3d32eaf95e/schema)
