Skip to main content
POST
/
sequences
/
{id}
/
steps
/
bulk
Bulk create sequence steps
curl --request POST \
  --url https://api.reply.io/v3/sequences/{id}/steps/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
[
  {
    "type": "Email",
    "delayInMinutes": 1,
    "executionMode": "Automatic",
    "templates": [
      {
        "subject": "<string>",
        "body": "<string>",
        "isEnabled": true,
        "id": 123
      }
    ]
  }
]
'
[
  {
    "id": 123,
    "error": "<string>"
  }
]

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Sequence Id

Body

application/json

Email step with template 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
templates
Email Variant · object[]
required

Array of email templates/variants

Response

Bulk creation results

id
integer

Created step Id (null if failed)

error
string | null

Error detail if creation failed