Skip to main content
POST
/
v3
/
linkedin-accounts
/
bulk-delete
Bulk delete LinkedIn accounts
curl --request POST \
  --url https://api.reply.io/v3/linkedin-accounts/bulk-delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    10,
    11,
    12
  ],
  "force": false
}
'
{}

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.

Body

application/json

Request body for bulk deleting LinkedIn accounts.

ids
integer[]
required

List of LinkedIn account IDs to delete

force
boolean

Whether to force delete accounts that are in use by sequences

Response

Bulk delete results. Only failed items appear in the response dictionary.

Possible per-item error codes:

errorMeaning
2NotFound — account does not exist
3AccountInUse — account is in use by sequences (omit force=true triggers this)
7InternalError — unexpected failure
8VoiceProfileConflict — more voice profiles than remaining LinkedIn accounts
{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.