Skip to main content
Call POST /users/me/clothing to add a new item to your wardrobe. You must supply a name and a category. All other fields, including image_id, are optional. To attach an image, first upload it via POST /images/preview and pass the returned image_id in the request body.

Endpoint

Request body

name
string
required
Display name of the clothing item.
category
string
required
Category of the item. One of: JACKET, TOP, BOTTOM, FOOTWEAR.
image_id
string
ID of an image to associate with this item. Obtain this from POST /images/preview.
color
string
Color of the item (e.g. "Navy Blue").
seasons
array
Seasons the item is suited for. Accepted values: Spring, Summer, Autumn, Winter.
tags
array
Style tags for the item. Accepted values: Casual, Formal, Sports, Vintage.
description
string
Free-text description of the item.

Response fields

Status: 201 Created
clothing
object
required
The newly created clothing object.

Example

cURL
Response