Example be.open API
  1. Price
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
      PATCH
    • change option settings just for this service provider
      PATCH
    • change attribute category setting just for this service provider
      PATCH
    • /api/serviceproviders/{serviceproviderId}/orders
      GET
    • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
      GET
    • /api/serviceproviders/{serviceproviderId}/orders/{orderId}
      PATCH
  • 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
  1. Price

get Price list

Developing
POST
/api/products/prices/lists
returns a list prices. If you need only 1 price you should use the basket endpoint

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",
    "totalNumber": 0,
    "productId": "string",
    "sku": "string",
    "listType": 0
}

Responses

🟢200Success
application/json
Body

Example
{
    "jsonapi": {
        "version": "string"
    },
    "data": [
        {
            "type": "string",
            "id": "string",
            "attributes": {
                "option": {
                    "type": "string",
                    "id": "string",
                    "attributes": {
                        "name": "string",
                        "sort": 0,
                        "icon_name": "string",
                        "description": null,
                        "key": "string",
                        "meta": {
                            "quantity": 0
                        },
                        "original-name": null
                    }
                },
                "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
                    }
                }
            }
        }
    ]
}
Modified at 2024-06-21 11:51:28
Previous
get Basket
Next
get product categories
Built with