Skip to main content
POST
/
sequences
/
{id}
/
steps
/
{step_id}
/
templates
Append a sequence step template variant
curl --request POST \
  --url https://api.reply.io/v3/sequences/{id}/steps/{step_id}/templates \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "subject": "<string>",
  "body": "<string>",
  "isEnabled": true,
  "id": 123
}
'
{
  "subject": "<string>",
  "body": "<string>",
  "isEnabled": true,
  "id": 123
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Sequence Id

step_id
integer
required

Step Id

Body

application/json

Individual email template variant

subject
string
required

Email subject line

body
string
required

Email body content

isEnabled
boolean
required

Indicates whether the template variant is enabled

id
integer

Unique identifier for this email variant

Response

Sequence step template created successfully

Individual email template variant

subject
string
required

Email subject line

body
string
required

Email body content

isEnabled
boolean
required

Indicates whether the template variant is enabled

id
integer

Unique identifier for this email variant