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 customer to Shopping Cart

Developing
POST
/api/sip/shopping-cart/{id}/customer
Captures customer information (e.g., shipping address, phone) during the ShoppingCart process

Request

Path Params

Body Params application/json

Example
{
"givenName":"emiy",
"familyName":"pavard",
"email":"femiy41627@kurbieh.com",
"address":{"address":"788788","city":"lyon","secondAddress":"lyon","zipCode":"69001","state":"","country":"France","deliveryNotes":"gggg"},
"phone":"+33999999999","title":"woman01"
}

Responses

🟢200Success
application/json
Body

Example
{
    "insurance": {
        "status": "no_insurance",
        "estimatedItemPrice": null,
        "price": null
    },
    "tempItem": null,
    "customer": {
        "title": "woman01",
        "_id": "679216174e4caf34f9b82ddb",
        "email": "femiy41627@kurbieh.com",
        "familyName": "pavard",
        "givenName": "emiy",
        "phone": "+33999999999"
    },
    "discountCode": null,
    "bookingType": "paid",
    "store": {
        "onlineStore": true,
        "_id": "658999b249f0eb0042abec72",
        "name": "Maje Online"
    },
    "_id": "6792410d9c7bac0037ecc3db",
    "source": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36",
    "provider": {
        "serviceIds": [
            "66a77c491c44e0affd311ec3",
            "66a77c371c44e0affd311ec2"
        ],
        "additionalImages": [],
        "status": "Available",
        "_id": "66aa51d473348dc769c106e3",
        "name": "Les réparables",
        "displayName": "Les réparables",
        "imageUrl": "https://d3p40t67j68p9l.cloudfront.net/qynbmafhfg_1_2_3_j17yyvhtsg_1_2_3_fsxds7v5xtc_1_2_3_6n7kywam1m_1_2_3_ALLUpcycling11.jpeg"
    },
    "remoteAddress": "196.179.208.4, 34.111.123.139",
    "items": [
        {
            "isRevoke": false,
            "name": "",
            "tag": null,
            "certificateId": null,
            "isNft": false,
            "arianeeEventId": null,
            "dspCertificateId": null,
            "video": null,
            "selectedChildSubCategories": [],
            "attributes": [
                {
                    "labelTranslation": {
                        "en": "MARQUE",
                        "fr": "Marque"
                    },
                    "helperTextTranslation": {
                        "en": "",
                        "fr": ""
                    },
                    "required": true,
                    "type": "select",
                    "text": null,
                    "textArea": null,
                    "select": {
                        "subType": "Normal",
                        "hadDefaultValue": true,
                        "options": [
                            {
                                "value": "Maje",
                                "metadata": {
                                    "colorCode": "",
                                    "fontFamily": "",
                                    "fontSize": "",
                                    "fontWeight": "",
                                    "fontStyle": ""
                                },
                                "translations": {
                                    "en": "Maje",
                                    "fr": "Maje"
                                }
                            }
                        ]
                    },
                    "multiSelect": null,
                    "checkbox": null,
                    "radio": null,
                    "date": null,
                    "number": null,
                    "file": null,
                    "_id": "65f00d9f3f759e003843e050",
                    "identifier": "Brand",
                    "__v": 0,
                    "parentId": null,
                    "parentValue": []
                },
                {
                    "labelTranslation": {
                        "en": "MATERIAL COMPOSITION",
                        "fr": "Composition principale"
                    },
                    "helperTextTranslation": {
                        "en": "Eg. 100% Cotton",
                        "fr": "Ex : 100% coton"
                    },
                    "required": false,
                    "type": "text",
                    "text": {
                        "maxLength": 365
                    },
                    "textArea": null,
                    "select": null,
                    "multiSelect": null,
                    "checkbox": null,
                    "radio": null,
                    "date": null,
                    "number": null,
                    "file": null,
                    "_id": "65f010ae3f759e003843e052",
                    "identifier": "MATERIAL-COMPOSITION",
                    "__v": 0,
                    "parentId": null,
                    "parentValue": []
                },
                {
                    "labelTranslation": {
                        "en": "Doublure",
                        "fr": "Doublure"
                    },
                    "helperTextTranslation": {
                        "en": "",
                        "fr": ""
                    },
                    "required": true,
                    "type": "radio",
                    "text": null,
                    "textArea": null,
                    "select": null
Previous
Add items to Shopping Cart
Next
Delete Item From Shopping Cart
Built with