Skip to main content
POST
/
contact-accounts
/
{id}
/
contact-links
/
bulk
Bulk add contacts to a contact account
curl --request POST \
  --url https://api.reply.io/v3/contact-accounts/{id}/contact-links/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "contactIds": [
    123
  ]
}
'
{}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Path Parameters

id
integer
required

Contact account ID

Body

application/json

Request body containing a list of contact IDs

contactIds
integer[]
required

List of contact IDs

Response

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

{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.