CartItem.company

Request

Fields when send to the api inside a request.

Field Type Description

Response

Fields when returned by the api in a response.

Field Type Description
amount Int An integer value
persons Int An integer value
gram Int An integer value
comment String A String value
product Product.company-order
product_price ProductPrice.company-order? Nullable.
calculated_prices CartItemPrices
discount_prices CartItemPrices? Nullable.
amount_free Int Amount you receive for free on top of the chosen amount. If the price type of the product is in gram or persons, this amount is also in gram or persons.
options [CartItemOption] Array of CartItemOption

Examples

Request

When used inside a request.

Example 1

[]

Response

When returned in a response.

Example 1

{
    "amount": 17,
    "persons": 13,
    "gram": 16,
    "comment": "...",
    "product": {
        "id": 14,
        "name": "...",
        "images": [
            {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": true
            },
            {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            },
            {
                "resolutions": [
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    },
                    {
                        "src": "https://example.com",
                        "width": 600,
                        "height": 350
                    }
                ],
                "white_background": false
            }
        ],
        "price_type": "PER_UNIT",
        "target_price": false,
        "price": {
            "value": 18,
            "currency": "EUR"
        },
        "only_order_in_store": true,
        "price_look_up_code": "...",
        "code": "...",
        "category": {
            "id": 15,
            "name": "..."
        },
        "origin": "..."
    },
    "product_price": {
        "id": 19,
        "name": "...",
        "price": {
            "value": 16,
            "currency": "EUR"
        },
        "price_look_up_code": "...",
        "code": "..."
    },
    "calculated_prices": {
        "unit_price": {
            "value": 19,
            "currency": "EUR"
        },
        "price": {
            "value": 17,
            "currency": "EUR"
        }
    },
    "discount_prices": {
        "unit_price": {
            "value": 12,
            "currency": "EUR"
        },
        "price": {
            "value": 11,
            "currency": "EUR"
        }
    },
    "amount_free": 17,
    "options": [
        {
            "option": {
                "id": 17,
                "name": "...",
                "price_change": {
                    "value": 19,
                    "currency": "EUR"
                },
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "require_image": false,
                "code": "...",
                "price_calculation": "PER_PIECE",
                "optionset": {
                    "id": 14,
                    "name": "...",
                    "code": "..."
                }
            },
            "upload": {
                "id": 12,
                "url": "https://example.com"
            }
        },
        {
            "option": {
                "id": 10,
                "name": "...",
                "price_change": {
                    "value": 17,
                    "currency": "EUR"
                },
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "require_image": true,
                "code": "...",
                "price_calculation": "PER_PIECE",
                "optionset": {
                    "id": 17,
                    "name": "...",
                    "code": "..."
                }
            },
            "upload": {
                "id": 15,
                "url": "https://example.com"
            }
        },
        {
            "option": {
                "id": 11,
                "name": "...",
                "price_change": {
                    "value": 13,
                    "currency": "EUR"
                },
                "image": {
                    "resolutions": [
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        },
                        {
                            "src": "https://example.com",
                            "width": 600,
                            "height": 350
                        }
                    ],
                    "white_background": false
                },
                "require_image": true,
                "code": "...",
                "price_calculation": "PER_PIECE",
                "optionset": {
                    "id": 12,
                    "name": "...",
                    "code": "..."
                }
            },
            "upload": {
                "id": 14,
                "url": "https://example.com"
            }
        }
    ]
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
1.6.0 stable