Save your wardrobe booking apis
  1. services
Save your wardrobe booking apis
  • Customer booking
    • Getting Started
      • Introduction
      • Authentication
      • Attribute groups
    • Authentication
      • Customer login
      • Customer signup
    • categories
      • Get providers
      • Get clothes categories
    • services
      • Get services
        GET
    • 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. services

Get services

Developing
GET
/v1/services
This API endpoint fetches a list of available services based on various filtering criteria. Clients can specify filters such as:
Subclothes Categories – Restrict results to services related to specific clothing categories selected by the customer.
Service Providers in the Customer’s Area – Returns only providers available in the vicinity of the provided address.
Booking Payment Status – Filter services based on whether the booking is fully paid or covered under a warranty.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "string",
        "parentSubCategoryId": "string",
        "subServices": [
            {
                "id": "string",
                "originalPrice": {
                    "EUR": "string",
                    "GBP": "string",
                    "USD": "string"
                },
                "price": {
                    "EUR": "string",
                    "GBP": "string",
                    "USD": "string"
                },
                "imageUrl": "string",
                "discountOffers": [
                    {
                        "id": "string",
                        "isRepairFund": true,
                        "fixedAmount": "string"
                    }
                ],
                "name": {
                    "fr": "string",
                    "en": "string",
                    "de": "string",
                    "es": "string"
                },
                "description": {
                    "fr": "string",
                    "en": "string",
                    "de": "string",
                    "es": "string"
                },
                "canBeMultiple": true,
                "providerId": "string",
                "attributeGroup": {
                    "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"
                        }
                    ]
                }
            }
        ]
    }
]
Previous
Get clothes categories
Next
Uplaod photos
Built with