Skip to main content

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.

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

FieldValue
MethodDELETE
Path/outfits/{outfit_id}
Auth requiredYes (Bearer token)
Rate limit5 per minute

Path parameters

outfit_id
string
required
The ID of the outfit to delete.

Response

Status: 204 No Content No response body is returned on success.

Example

cURL
curl --request DELETE \
  --url https://api.drssed.com/outfits/otf_abc123 \
  --header 'Authorization: Bearer <token>'
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.