v1

latestOpenAPI 3.1.02026-07-26359254.7 MB
Sequences

Save a sequence as a template

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

Creates a new sequence template from an existing sequence

post/v3/sequences/{id}/save-as-template

Path parameters

idinteger required

Sequence Id

Request body

namestring required

Name for the new template

descriptionstring nullable

Description for the template

scopestring nullable

Scope of the template (e.g., team, organization)

Response

Sequence template created successfully

idstring uuid

Unique identifier for the template

namestring

Name of the template

descriptionstring nullable

Description of the template

stepTypesstring[]

Types of steps in the template (e.g. Email, LinkedIn, Call, Task)

isConditionalboolean

Whether the template contains conditional steps

Example response

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Cold Outreach",
  "description": "A template for cold outreach sequences",
  "stepTypes": [
    "Email",
    "LinkedIn"
  ],
  "isConditional": false
}