Skip to main content
PUT
/
sequences
/
{id}
/
contact-links
/
status
Bulk set contact status in sequence
curl --request PUT \
  --url https://api.reply.io/v3/sequences/{id}/contact-links/status \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "contactIds": [
    123
  ],
  "status": "<string>"
}
'
{
  "affected": [
    123
  ],
  "notProcessed": {}
}

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
contactIds
integer[]
required

Array of contact IDs to update

status
string
required

Target status to set

Response

Contact statuses updated

affected
integer[]

IDs of contacts that were updated

notProcessed
object