Save your wardrobe booking apis
  1. order
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
      • 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
        POST
      • List Orders
        GET
  • Schemas
    • attributesGroup
    • currency
    • translatedString
    • metadata
    • shoppingCart
    • item
    • item Copy
    • order
  1. order

List Orders

Developing
GET
/api/sip/orders
This route used to retrieve all orders, it returns an array of order .

Request

None

Responses

🟢200Success
application/json
Body

Example
[
    {
        "id": "string",
        "status": "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",
        "notes": [
            "string"
        ],
        "histories": [
            {
                "status": "string",
                "date": "string"
            }
        ],
        "warrantyStatus": "string",
        "orderDate": "string"
    }
]
Previous
Create the Order from the Shopping Cart
Next
attributesGroup
Built with