Save your wardrobe booking apis
  1. categories
Save your wardrobe booking apis
  • Customer booking
    • Getting Started
      • Introduction
      • Authentication
      • Attribute groups
    • Authentication
      • Customer login
      • Customer signup
    • categories
      • Get providers
        GET
      • Get clothes categories
        GET
    • services
      • Get services
    • Upload photos
      • Uplaod photos
    • shoppingCart
      • Create A New Shopping Cart
      • Add items to Shopping Cart
      • Add customer to Shopping Cart
      • Delete Item From Shopping Cart
      • Get Available Logistics Options
      • Add Logistic Option To Shopping Cart
    • order
      • Create the Order from the Shopping Cart
      • List Orders
  • Schemas
    • attributesGroup
    • currency
    • translatedString
    • metadata
    • shoppingCart
    • item
    • item Copy
    • order
  1. categories

Get clothes categories

Developing
GET
/v1/clothes-categories
This endpoint retrieves a list of clothing categories and serves as the first step in the booking flow.
It supports filtering by a list of providerIds, which is useful when providers have already been determined in the initial booking step.
Each clothing category includes a tags array, allowing filtering based on attributes such as womenswear and menswear. Additionally, each category contains a list of subcategories for more granular classification.

Request

Query Params

Body Params application/json

Example
{}

Responses

🟢200Success
application/json
Body

Example
{
    "categories": [
        {
            "categoryId": "string",
            "name": {
                "fr": "string",
                "en": "string",
                "de": "string",
                "es": "string"
            },
            "image": "string",
            "tag": [
                "string"
            ],
            "subClothesCategories": [
                {
                    "id": "string",
                    "name": {
                        "fr": "string",
                        "en": "string",
                        "de": "string",
                        "es": "string"
                    },
                    "attributesGroup": {
                        "id": "string",
                        "identifier": "string",
                        "name": {
                            "fr": "string",
                            "en": "string",
                            "de": "string",
                            "es": "string"
                        },
                        "description": {
                            "fr": "string",
                            "en": "string",
                            "de": "string",
                            "es": "string"
                        },
                        "attributes": [
                            {
                                "_id": "string",
                                "label": {
                                    "fr": "string",
                                    "en": "string",
                                    "de": "string",
                                    "es": "string"
                                },
                                "helperLabel": {
                                    "fr": "string",
                                    "en": "string",
                                    "de": "string",
                                    "es": "string"
                                },
                                "isRequired": true,
                                "type": "string",
                                "metadata": {
                                    "maxLength": 0
                                },
                                "parentValue": [
                                    "string"
                                ],
                                "parentId": [
                                    "string"
                                ],
                                "identifier": "string"
                            }
                        ]
                    },
                    "identifier": "string"
                }
            ]
        }
    ]
}
Previous
Get providers
Next
Get services
Built with