Skip to main content
POST
/
api
/
brand-studio
/
collections
Create Collection Endpoint
curl --request POST \
  --url https://api.example.com/api/brand-studio/collections \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "season": "<string>"
}
'
{
  "created_at": "<string>",
  "id": "<string>",
  "name": "<string>",
  "status": "draft",
  "updated_at": "<string>",
  "description": "<string>",
  "garment_count": 0,
  "garments": [],
  "season": "<string>",
  "share_token": "<string>"
}

Body

application/json
name
string
required
Required string length: 1 - 200
description
string | null
season
string | null

Response

Successful Response

created_at
string
required
id
string
required
name
string
required
status
enum<string>
required
Available options:
draft,
review,
final,
archived
updated_at
string
required
description
string | null
garment_count
integer
default:0
garments
GarmentResponse · object[]
season
string | null
share_token
string | null