Skip to main content
GET
/
v3
/
sequences
/
{id}
/
steps
List all sequence steps
curl --request GET \
  --url https://api.reply.io/v3/sequences/{id}/steps \
  --header 'Authorization: Bearer <token>'
[
  {
    "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

Response

List of sequence steps retrieved 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