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

# Delete Category

> Delete a category and remove from all partnerships

## Authentication

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://app.journeybee.io/api/v1/categories" \
    -H "Authorization: Bearer your-api-key-uuid" \
    -H "Content-Type: application/json" \
    -d '{"id": 1}'
  ```
</CodeGroup>

## Request Body Schema

<ParamField body="id" type="number" required>
  Category ID to delete
</ParamField>

## Response Schema

The API returns a `204 No Content` status code on successful deletion.

## Notes

* Requires API key with `write_access` permission
