Skip to main content
POST
/
email-accounts
/
bulk-delete
Bulk delete email accounts
curl --request POST \
  --url https://api.reply.io/v3/email-accounts/bulk-delete \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "ids": [
    123,
    456,
    789
  ]
}
'
{}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json
ids
integer<int64>[]
required

Array of email account IDs to delete

Response

Bulk operation completed. Response is a dictionary keyed by account ID. Only failed items appear in the dictionary; missing IDs were deleted 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.