company.ProductPrice

Request

Fields when send to the api inside a request.

Field Type Description
name [Language: String] Name of the product price (translated)
price UInt Price of this product price (cents)
order Int The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged.
price_look_up_code String? Optional. Nullable. A String value
code String? Optional. Nullable. A custom code. You can set this to your own code and use this field to map your prices to Bakeronline prices

Response

Fields when returned by the api in a response.

Field Type Description
name [Language: String] Name of the product price (translated)
price UInt Price of this product price (cents)
id Int Id of the product price
order Int The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged.
price_look_up_code String? Optional. Nullable. A String value
code String? Optional. Nullable. A custom code. You can set this to your own code and use this field to map your prices to Bakeronline prices

Examples

Request

When used inside a request.

Example 1

{
    "name": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "price": 14,
    "order": 10,
    "price_look_up_code": "...",
    "code": "..."
}

Response

When returned in a response.

Example 1

{
    "name": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "price": 11,
    "id": 12,
    "order": 11,
    "price_look_up_code": "...",
    "code": "..."
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.4.0 stable