Skip to main content
Call PATCH /clothing/{clothing_id} to update an existing clothing item. You only need to include the fields you want to change — any field you omit will remain unchanged. To replace the full seasons or tags list, pass the complete new array; the existing values will be overwritten.

Endpoint

Path parameters

clothing_id
string
required
UUID of the clothing item to update.

Request body

All fields are optional. Only the fields you include will be updated.
name
string
New display name for the item.
category
string
New category. One of: JACKET, TOP, BOTTOM, FOOTWEAR.
color
string
New color for the item.
seasons
array
Replaces the entire seasons array. Accepted values: Spring, Summer, Autumn, Winter.
tags
array
Replaces the entire tags array. Accepted values: Casual, Formal, Sports, Vintage.
image_id
string
ID of a new image to associate with this item. Obtain this from POST /images/preview.
description
string
New free-text description for the item.

Response fields

Status: 200 OK
clothing
object
required
The updated clothing object.

Example

cURL
Response