Get Design Category Name List

Get all category names of POD customized clothing styles

Endpoint

GET /openapi/v1/product/custom/modelCategoryName/search

Headers

For common header, refer to How to call KakaClo Shop APIs - Common Headers

curl --request POST
     --url 'https://developer.kakaclo.com/openapi/v1/product/custom/modelCategoryName/search'
     --header 'Content-Type: application/json'
     --header 'Authorization: Bearer YOU_ACCES-TOKEN'
Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response Body

{
  "code": 10000,
  "data": [
    "Fishing Clothes",
    "Hoodie",
    "Jacket",
    "Kimono",
    "Pants",
    "Pet Suit",
    "Polo Shirt",
    "Retro",
    "Shirt",
    "Skirt",
    "Sports",
    "Suit",
    "Swimsuit",
    "T-shirt",
    "Underwear",
    "Vest"
  ],
  "message": "Success!"
}

Last updated