Skip to main content
POST
/
v3
/
sequences
/
{id}
/
contact-links
/
bulk-delete
Bulk remove contacts from sequence
curl --request POST \
  --url https://api.reply.io/v3/sequences/{id}/contact-links/bulk-delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactIds": [
    123
  ]
}
'
{
  "requested": 123,
  "removed": 123,
  "notFound": 123,
  "notInSequence": 123,
  "removedIds": [
    123
  ]
}

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

Sequence ID

Body

application/json
contactIds
integer[]
required

Response

Contacts removed from sequence

requested
integer

Number of contacts requested for removal

removed
integer

Number of contacts actually removed

notFound
integer

Number of contacts not found

notInSequence
integer

Number of contacts not in the sequence

removedIds
integer[]

IDs of contacts that were removed