Skip to main content
POST
/
v3
/
contact-account-lists
/
{id}
/
move-accounts
Move accounts to an account list
curl --request POST \
  --url https://api.reply.io/v3/contact-account-lists/{id}/move-accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountIds": [
    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 list ID

Body

application/json
accountIds
integer[]
required

Account IDs to add or move (1 to 1000 items)

Required array length: 1 - 1000 elements
Required range: x >= 1

Response

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

Possible per-item error codes:

errorMeaning
7AccountNotProcessed — account could not be moved (e.g. wrong team, deleted, invalid ID)
{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.