Skip to main content
POST
/
contacts
/
{id}
/
move-to-sequence
Move a contact to a sequence
curl --request POST \
  --url https://api.reply.io/v3/contacts/{id}/move-to-sequence \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "sequenceId": 123,
  "removeFromExisting": false,
  "startStepId": 123
}
'
{
  "title": "Validation Failed",
  "status": 349,
  "detail": "The scheduler with ID 'daily-9am' does not exist in your account",
  "errorCode": 1004
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Contact ID

Body

application/json
sequenceId
integer
required

Target sequence ID to move the contact to

removeFromExisting
boolean
default:false

Whether to remove the contact from their current sequence

startStepId
integer | null

Optional step ID to start from in the target sequence

Response

Contact moved to sequence successfully