Skip to main content
POST
/
sequences
/
{id}
/
steps
/
{step_id}
/
variants
/
bulk
Bulk create step variants
curl --request POST \
  --url https://api.reply.io/v3/sequences/{id}/steps/{step_id}/variants/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
[
  {
    "subject": "Follow up on our conversation",
    "body": "Hi {{firstName}}, I wanted to follow up...",
    "isEnabled": true
  }
]
'
[
  {
    "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

step_id
integer
required

Step Id

Body

application/json
subject
string

Subject line of the variant

body
string

Body content of the variant

isEnabled
boolean
default:true

Whether the variant is enabled

Response

Bulk creation results

id
integer

Created variant Id (null if failed)

error
string | null

Error detail if creation failed