Example be.open API
  1. Orders
Example be.open API
  • be.open API
  • Auth
    • Get api auth token
      POST
  • Attributes & Options
    • get all available attributes
      GET
    • add or update an attribute
      POST
    • get an attribute
      GET
    • adds or updates an option
      POST
    • get attribute categories
      GET
    • get options of a type
      POST
  • Basket
    • get Basket
      POST
  • Price
    • get Price list
      POST
  • Categories
    • get product categories
      GET
    • Returns the products of a category.
      GET
  • Products & Combinations
    • get product configuration
      POST
    • get option configuration
      POST
    • get product attributes
      GET
    • get product independant attributes
      GET
    • Returns the products.
      GET
    • adds or updates a product with attributes, options and combinations.
      POST
    • Returns the single product.
      GET
    • adds or updates attributes, options and combinations of a product. Used to import combinations in parts
      POST
    • delete combinations.
      DELETE
    • get country attribute with options
      GET
  • 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
        POST
      • update order
        PUT
      • update order cart
        PUT
  1. Orders

update order cart

PUT
/api/placedOrderCart/9a783e25-07c5-48ad-8927-03428604f997

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
  "placedOrderId": "9a783e04-edda-4704-826c-d68c3ab94bae",
  "externalOrderCartReference": "123456",
  "articleName": "Mein erster Artikel-update",
  "articleType": "42",
  "quantity": "11",
  "priceGross": "123456.0987",
  "priceGrossInternal": "12.5"
}

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2024-05-14 10:45:27
Previous
update order
Built with