Skip to main content
POST
/
api
/
public
/
v1
/
sender-accounts
/
bulk
/
delete
Bulk delete sender accounts
curl --request POST \
  --url https://api.coldsend.pro/api/public/v1/sender-accounts/bulk/delete \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "inbox_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "confirm_deletion": true
}
'
{
  "success": true,
  "message": "<string>",
  "total": 123,
  "deleted_count": 123,
  "failed_count": 123,
  "job_id": "<string>",
  "skipped_count": 0,
  "results": []
}

Authorizations

X-API-Key
string
header
required

API key with format cs_live_xxx

Body

application/json

Request schema for bulk sender account deletion.

inbox_ids
string<uuid>[]
required

List of sender account IDs to delete (max 100)

Required array length: 1 - 100 elements
confirm_deletion
boolean
required

You must explicitly confirm bulk deletion by setting this to true

Response

Bulk deletion initiated

Response for bulk sender account deletion.

success
boolean
required
message
string
required
total
integer
required

Total accounts in request

deleted_count
integer
required

Number of successfully deleted accounts

failed_count
integer
required

Number of failed deletions

job_id
string | null

Job ID for tracking progress

skipped_count
integer
default:0

Number of skipped accounts (not found, in use)

results
BulkSenderAccountDeleteResult · object[]

Individual deletion results