Save your wardrobe booking apis
  1. shoppingCart
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
    • Upload photos
      • Uplaod photos
    • shoppingCart
      • Create A New Shopping Cart
        GET
      • Add items to Shopping Cart
        POST
      • Add customer to Shopping Cart
        POST
      • Delete Item From Shopping Cart
        DELETE
      • Get Available Logistics Options
        GET
      • Add Logistic Option To Shopping Cart
        POST
    • order
      • Create the Order from the Shopping Cart
      • List Orders
  • Schemas
    • attributesGroup
    • currency
    • translatedString
    • metadata
    • shoppingCart
    • item
    • item Copy
    • order
  1. shoppingCart

Add Logistic Option To Shopping Cart

Developing
POST
/shopping-cart/{id}/logistics-options

Request

Path Params

Body Params application/json

Example
{
    "logisticOption": "string"
}

Responses

🟢200Success
application/json
Body

Example
{
    "id": "string",
    "customer": {
        "id": "string",
        "title": "string",
        "email": "string",
        "familyName": "string",
        "givenName": "string",
        "phone": "string"
    },
    "discountCode": "string",
    "bookingType": "warranty",
    "store": {
        "id": "string",
        "isOnlineStore": true,
        "name": "string"
    },
    "provider": {
        "id": "string",
        "displayName": "string",
        "imageUrl": "string"
    },
    "items": [
        {
            "id": "string",
            "images": [
                {
                    "tag": "string",
                    "mimeType": "string",
                    "name": "string",
                    "url": "string",
                    "key": "string",
                    "bucket": "string",
                    "ETag": "string",
                    "dimensions": [
                        {
                            "_id": "string",
                            "type": "string",
                            "width": 0,
                            "height": 0,
                            "orientation": 0,
                            "url": "string"
                        }
                    ]
                }
            ],
            "clothesCategory": {
                "image": "string",
                "id": "string",
                "name": {
                    "fr": "string",
                    "en": "string"
                }
            },
            "services": [
                {
                    "id": "string",
                    "name": {
                        "fr": "string",
                        "en": "string",
                        "de": "string",
                        "es": "string"
                    },
                    "quantity": 0,
                    "price": {
                        "EUR": "string",
                        "GBP": "string",
                        "USD": "string"
                    },
                    "originalPrice": {
                        "EUR": "string",
                        "GBP": "string",
                        "USD": "string"
                    },
                    "appliedDiscountOffer": {
                        "id": "string",
                        "name": "string",
                        "isRepairFund": true,
                        "percentage": null,
                        "fixedAmount": {
                            "EUR": 0
                        },
                        "type": "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"
                    }
                ]
            },
            "values": {
                "Brand": "string",
                "MATERIAL-COMPOSITION": "string",
                "Doublure": "string",
                "NOTES-COMPLEMENTAIRE": "string"
            }
        }
    ],
    "logisticOption": {
        "id": "string",
        "name": "string"
    },
    "address": {
        "address": "string",
        "secondAddress": "string",
        "city": "string",
        "state": "string",
        "zipCode": "string",
        "country": "string",
        "deliveryNotes": "string"
    },
    "estimatedPrice": {
        "estimatedPrice": 0,
        "vat": 0,
        "serviceFee": 0,
        "deliveryFee": 0,
        "taxAmount": 0,
        "servicesPrices": 0,
        "appliedDiscounts": [
            {
                "type": "string",
                "value": 0
            }
        ],
        "totalDiscount": 0
    },
    "source": "string"
}
Previous
Get Available Logistics Options
Next
Create the Order from the Shopping Cart
Built with