Skip to main content
POST
/
v3
/
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 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sequenceId": 123,
  "removeFromExisting": false,
  "startStepId": 123,
  "ignoreStepDelay": false,
  "startFrom": "2023-11-07T05:31:56Z"
}
'
"<unknown>"

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

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

ignoreStepDelay
boolean
default:false

If true, skip the configured delay before the first step and start processing immediately

startFrom
string<date-time> | null

Optional date when contact processing should begin. If not provided, processing starts immediately.

Response

Contact moved to sequence successfully. The response body is empty.

Empty body