Skip to main content
POST
/
contact-lists
/
{id}
/
move-contacts
Move contacts to a contact list
curl --request POST \
  --url https://api.reply.io/v3/contact-lists/{id}/move-contacts \
  --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 list ID

Body

application/json
contactIds
integer[]
required

Array of contact IDs to move

Response

Move operation completed. Response is a dictionary keyed by contact ID. Only failed items appear; missing IDs were moved successfully.

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