Skip to main content
POST
/
v3
/
contact-accounts
/
{id}
/
contact-links
/
bulk
Bulk add contacts to an account
curl --request POST \
  --url https://api.reply.io/v3/contact-accounts/{id}/contact-links/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactIds": [
    2
  ]
}
'
{}

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

Account ID

Body

application/json

Request body containing a list of contact IDs

contactIds
integer[]
required

List of contact IDs

Maximum array length: 1000
Required range: x >= 1

Response

Dictionary of failed items keyed by contact ID. Empty object {} means all succeeded.

Per-item error codes:

errorMeaning
1NotFound — contact does not exist
3InvalidInput — contact could not be added
{key}
NotProcessedItemResult · object

Per-item error for non-atomic bulk operations. Only failed items are returned in the response dictionary. Items not present in the dictionary succeeded.