Skip to main content
POST
/
api
/
v1
/
contacts
/
bulk-delete
Bulk Delete Contacts
curl --request POST \
  --url https://api.ravan.ai/api/v1/contacts/bulk-delete \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "ids": [
    "<string>"
  ]
}
'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

X-Api-Key
string
required
Your Agni API key used to authenticate the request. Pass it in the X-Api-Key header. Find or rotate it from your Ravan AI account settings.

Body

ids
string[]
required
A list of resource IDs to process in bulk. Each ID must belong to your organization.

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.

Authorizations

X-Api-Key
string
header
required

Body

application/json
ids
string[]
required

Array of contact UUIDs to delete

Response

200 - application/json

Successful response

success
boolean
message
string
data
object