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

# DELETE /clothing/{clothing_id} — Remove a clothing item

> Soft-delete a clothing item from your wardrobe. The item is hidden immediately and will no longer appear in list or sync endpoint results.

Call `DELETE /clothing/{clothing_id}` to remove a clothing item from your wardrobe. The item is hidden immediately — it will no longer appear in list responses or sync results. A successful deletion returns no body.

## Endpoint

| Field         | Value                     |
| ------------- | ------------------------- |
| Method        | `DELETE`                  |
| Path          | `/clothing/{clothing_id}` |
| Auth required | Yes — Bearer token        |
| Rate limit    | 5 per minute              |

## Path parameters

<ParamField path="clothing_id" type="string" required>
  UUID of the clothing item to delete.
</ParamField>

## Response

**Status: 204 No Content**

No response body is returned on success.

## Example

```bash cURL theme={null}
curl --request DELETE \
  --url https://api.drssed.com/clothing/clth_a1b2c3d4e5f6 \
  --header "Authorization: Bearer <token>"
```

<Note>
  This is a soft delete — the item is marked as deleted and excluded from all future list and sync results, but the underlying data is retained on the server.
</Note>
