> ## Documentation Index
> Fetch the complete documentation index at: https://developer.audiohook.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete multiple playlists

## 🗑️ Delete Multiple Playlists

Deletes multiple playlists by UUIDs.

### 📤 Request Example

```bash theme={null}
curl -X DELETE https://betaapi.audiohook.com/v2/companies/:companyUUID/playlists \
  -H "Authorization: Bearer ${API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "request_headers": [
      { "name": "X-Request-Header", "value": "Header value" }
    ],
    "body": {
      "playlist_ids": ["uuid1", "uuid2"]
    }
  }'
```

### 🌐 HTTP Request

```http theme={null}
DELETE /v2/companies/:companyUUID/playlists
```

### 🧾 Body Parameters

| Parameter     | Required | Type  | Description                            |
| ------------- | -------- | ----- | -------------------------------------- |
| playlist\_ids | ✅        | array | Array of playlist UUIDs to be deleted. |

***
