1. Basket
Example be.open API
  • be.open API
    • be.open API
    • Auth
      • Get api auth token
    • Attributes & Options
      • get all available attributes
      • add or update an attribute
      • get an attribute
      • adds or updates an option
      • get attribute categories
      • get options of a type
    • Basket
      • get Basket
        POST
    • Price
      • get Price list
    • Categories
      • get product categories
      • Returns the products of a category.
    • Products & Combinations
      • get product configuration
      • get option configuration
      • get product attributes
      • get product independant attributes
      • Returns the products.
      • adds or updates a product with attributes, options and combinations.
      • Returns the single product.
      • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
      • delete combinations.
      • get country attribute with options
    • Serviceprovider
      • change attribute settings just for this service provider
      • change option settings just for this service provider
      • change attribute category setting just for this service provider
      • /api/serviceproviders/{serviceproviderId}/orders
      • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
      • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
    • Order
      • create an order
      • create order with upload
      • get order
    • Dashboard API (MOVE TO ANOTHER PROJECT)!
      • Customer
        • whoAmI
        • addExternalClient
      • Orders
        • create order
        • update order
        • update order cart
    • Schemas
      • Schemas
        • Attribute
        • DeleteQuantityShipping
        • DeleteQuantityDelivery
        • Authentication
        • AuthenticationResponse
        • AttributeCategory
        • CreateAttribute
        • CreateOption
        • CategoryModel
        • Product
        • CreateProductCombination
        • DeleteProductCombination
        • BasicOrder
        • Order
        • Option
        • ProductMetaInformation
        • DeleteProductVariant
        • Client
        • OrderDetail
        • OrderCustomField
        • OrderFile
        • OrderUpload
        • File
        • ProductAttribute
        • DeleteProductQuantity
        • PartialDelivery
        • OrderDetailFile
        • ProductCombination
        • Address
        • OrderDetailPrice
        • OrderDetailCombination
        • Address2
        • PriceConfiguration
        • Currency
        • ConfigurationOption
        • Price
        • ConfigurationOptionSize
      • Improved Schemas
        • ExampleAttributesCollection
        • Attribute
        • AttributeMetaData
        • Category
      • Responses
      • Custom Schemas
        • ProductResponse
        • OptionOfAttribute
        • CreateProduct
        • ProductTypeData
        • ProductQuantity
        • QuantityShipping
        • QuantityDelivery
        • LooseLeafData
        • DependableAttribute
        • DependableOption
        • ProductVariant
        • AttributeResponse
        • OrderResponse
        • OrderDetailResponse
        • OrderDetailPage
        • OrderAttributeOption
        • UpdateServiceproviderOrderResponse
        • ServiceproviderOrderDetail
        • BasketPrice
        • OrderAddressResponse
        • AttributeOption
        • CreateOrderAddress
        • CreateOrder
        • PatchServiceProviderOrder
      • placedOrder
  • Druckshop API
    • Cart
      • getByJobNumber
    • Tracking
      • getByJobNumber
      • addTrackingId
    • Order
      • getOrder
      • getOrders
      • getOrderByReference
      • getOrderCart
    • FreeOrder
      • addFreeOrder
    • Schemas
      • FreeOrder
      • FreeOrderResponse
      • ApiAddress
      • FreeOrderPrice
      • FreeOrderCart
      • FreeOrderArticle
      • FreeOrderDataKeyValuePrice
  1. Basket

get Basket

Developing
POST
/api/basket
returns price and delivery date for configurations

Request

Body Params application/json

Example
{
    "delivery_address": {
        "first_name": "string",
        "last_name": "string",
        "street": "string",
        "house_number": "string",
        "zip_code": "string",
        "city": "string",
        "country": "string"
    },
    "currency": "string",
    "products": [
        {
            "sku": "string",
            "": "string"
        }
    ]
}

Responses

🟢200Success
application/json
Body

Example
{
    "jsonapi": {
        "version": "string"
    },
    "data": {
        "type": "string",
        "id": "string",
        "attributes": {
            "baskets": [
                {
                    "type": "string",
                    "id": "string",
                    "attributes": {
                        "serviceprovider": "string",
                        "products": [
                            {
                                "type": "string",
                                "id": "string",
                                "attributes": {
                                    "price": {
                                        "type": "string",
                                        "attributes": {
                                            "currency": "string",
                                            "price_net": 0,
                                            "price_gross": 0,
                                            "shipping_net": 0,
                                            "shipping_gross": 0,
                                            "price_fixed": null,
                                            "price_color": null,
                                            "price_copies": null,
                                            "price_total_copies_site": null,
                                            "price_discount_copies": null,
                                            "tax_rate": 0,
                                            "tax_value": 0,
                                            "shipping_tax_value": 0
                                        }
                                    },
                                    "delivery_date": "string",
                                    "deadline": "string"
                                }
                            }
                        ],
                        "price": {
                            "type": "string",
                            "id": "string",
                            "attributes": {
                                "currency": "string",
                                "price_net": 0,
                                "price_gross": 0,
                                "shipping_net": 0,
                                "shipping_gross": 0,
                                "price_fixed": null,
                                "price_color": null,
                                "price_copies": null,
                                "price_total_copies_site": null,
                                "price_discount_copies": null,
                                "tax_rate": 0,
                                "tax_value": 0,
                                "shipping_tax_value": 0
                            }
                        }
                    }
                }
            ],
            "delivery_address": {
                "type": "string",
                "id": "string",
                "attributes": {
                    "first_name": "string",
                    "last_name": "string",
                    "salutation": null,
                    "company": null,
                    "street": "string",
                    "house_number": "string",
                    "additional_line": null,
                    "zip_code": "string",
                    "city": "string",
                    "country": "string",
                    "email": null,
                    "phone": null,
                    "comment": null,
                    "vat_number": null
                }
            },
            "price": {
                "currency": "string",
                "price_net": 0,
                "price_gross": 0,
                "shipping_net": 0,
                "shipping_gross": 0,
                "price_fixed": null,
                "price_color": null,
                "price_copies": null,
                "price_total_copies_site": null,
                "price_discount_copies": null,
                "tax_rate": 0,
                "tax_value": 0,
                "shipping_tax_value": 0
            }
        }
    }
}
Modified at 2024-06-21 06:05:27
Previous
get options of a type
Next
get Price list
Built with