# POST /contacts/bulk-delete

**Resource:** [Contacts](./contacts.md)  
**Scopes:** `contacts:delete`  
**Write operation:** yes

Permanently delete up to 100 contacts in a single request. Returns a count of deleted records. Cannot be undone.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `ids` | body | uuid[] | yes | Array of contact UUIDs to delete (max 100) |

## Request example

```bash
curl -X POST \
  "https://api.trustpager.com/functions/v1/api/v1/contacts/bulk-delete" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"ids":["uuid-1","uuid-2","uuid-3"]}'
```

## Response example

```json
{
  "data": { "success": true, "deleted": 3 },
  "meta": { "credits_remaining": 9450 }
}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`