> ## 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 /outfits/{outfit_id} — Remove an outfit record

> Soft-delete an outfit by ID. The outfit is immediately hidden from list and sync results. Requires authentication as the outfit owner.

Call `DELETE /outfits/{outfit_id}` to remove an outfit from your wardrobe. The outfit is immediately hidden from all list and sync endpoints. You must be the owner of the outfit to delete it. The request returns no body on success.

## Endpoint

| Field         | Value                  |
| ------------- | ---------------------- |
| Method        | `DELETE`               |
| Path          | `/outfits/{outfit_id}` |
| Auth required | Yes (Bearer token)     |
| Rate limit    | 5 per minute           |

## Path parameters

<ParamField path="outfit_id" type="string" required>
  The ID of the outfit 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/outfits/otf_abc123 \
  --header 'Authorization: Bearer <token>'
```

<Note>
  Deletion is a soft delete — the underlying data is retained on the server but the outfit no longer appears in list or sync results. It is not possible to restore a deleted outfit through the API.
</Note>
