POST
Bulk Delete Contacts
Deletes multiple contacts by IDs.
HTTP Endpoint
POSThttps://api-wa.hidessh.com/api/v1/contacts/bulk-delete
Authentication
This endpoint requires Bearer authentication via your secret API Key.
| Header Key | Value | Required |
|---|---|---|
| Authorization | Bearer <your_api_key> | Required |
| Content-Type | application/json | Required |
Request Parameters
The request body must be formatted as JSON with the following parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
ids | array | Required | Array of contact ID strings to delete. example: ["01M1CT001", "01M1CT002"] |
Code Examples
request.sh
curl -X POST "https://api-wa.hidessh.com/api/v1/contacts/bulk-delete" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "ids": ["01M1CT001", "01M1CT002"] }'Response Formats
Contacts deleted.
application/json • 200 OK
On this page