Skip to main content
PUT
/
v3
/
sequences
/
{id}
/
steps
/
{step_id}
Update a sequence step
curl --request PUT \
  --url https://api.reply.io/v3/sequences/{id}/steps/{step_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "delayInMinutes": 1,
  "variants": [
    {
      "id": 123,
      "subject": "<string>",
      "message": "<string>",
      "attachmentIds": [
        123
      ]
    }
  ],
  "parentId": 123,
  "ifConditionPositive": true
}
'
{
  "delayInMinutes": 1,
  "variants": [
    {
      "id": 123,
      "subject": "<string>",
      "message": "<string>",
      "hasAttachments": true
    }
  ],
  "id": 123,
  "parentId": 123,
  "ifConditionPositive": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Sequence Id

step_id
integer
required

Step Id

Body

application/json

Email step with variant configuration for update operations

type
enum<string>
required

Step type discriminator

Available options:
email
delayInMinutes
integer
required

Delay in minutes before executing this step

Required range: x >= 0
executionMode
enum<string>
required

Execution mode for the email step

Available options:
automatic,
manual
variants
Email Variant (Update) · object[]
required

Array of email variants (A/B test versions). Each variant must include its id for update operations.

parentId
integer | null

ID of the parent step (for branching)

ifConditionPositive
boolean | null

Whether this step is on the positive branch of a condition

Response

Sequence step updated successfully

Email step with variant configuration

type
enum<string>
required

Step type discriminator

Available options:
email
delayInMinutes
integer
required

Delay in minutes before executing this step

Required range: x >= 0
executionMode
enum<string>
required

Execution mode for the email step

Available options:
automatic,
manual
variants
Email Variant · object[]
required

Array of email variants (A/B test versions)

id
integer | null
read-only

Unique identifier for the step

parentId
integer | null

ID of the parent step (for branching)

ifConditionPositive
boolean | null

Whether this step is on the positive branch of a condition