Delete multiple mailboxes permanently. This action cannot be undone.
⚠️ Important - Required Request Body: This DELETE endpoint requires a JSON request body (not supported in Swagger UI preview):
{
  "mailbox_ids": [1, 2, 3, 4, 5]
}
Usage Example:
curl -X DELETE https://api-v2.missioninbox.com/mailbox/bulk-delete/ \
  -H "Authorization: Token your-token-here" \
  -H "Content-Type: application/json" \
  -d '{"mailbox_ids": [1, 2, 3]}'
Note: While HTTP DELETE with body is valid, some Swagger UI versions may not display the request body field. The API fully supports and requires this payload.