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 /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

FieldValue
MethodDELETE
Path/clothing/{clothing_id}
Auth requiredYes — Bearer token
Rate limit5 per minute

Path parameters

clothing_id
string
required
UUID of the clothing item to delete.

Response

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

Example

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