---
title: "Delete Organization Token"
description: "Permanently revokes an API token. Requires admin role."
---

`DELETE /api/organization/tokens/:id`

## Example (cURL)

```bash
curl -X DELETE "$BASE_URL/api/organization/tokens/1" \
  -H "Cookie: $SESSION_COOKIE"
```

## Response

```json
{ "success": true }
```

## Common errors

- `401 Unauthorized` when not authenticated
- `403 Forbidden` when not an admin
- `404 Token not found` when the token doesn't exist or belongs to another org

