POST
/
v4
/
sequences
/
{id}
/
save-as-template
Save a sequence as a template
curl --request POST \
  --url https://api.reply.io/v4/sequences/{id}/save-as-template \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "scope": "<string>"
}
'
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Cold Outreach",
  "description": "A template for cold outreach sequences",
  "stepTypes": [
    "Email",
    "LinkedIn"
  ],
  "isConditional": false
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Sequence Id

Required range: x >= 1

Body

application/json
name
string
required

Name for the new template

description
string | null

Description for the template

scope
string | null

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

Response

Sequence template created successfully

A sequence template

id
string<uuid>

Unique identifier for the template

name
string

Name of the template

description
string | null

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