CartConfig

When available, this will return all essential information about the cart. When the cart is also set in the response, the cart_config contains information about the cart in the response, not in the request.

Field Type Description
target_price Bool A boolean value
prices CartPrices Prices
payment PaymentConfig Information about the allowed payment methods and messages that should get displayed on the payment page.
takeout TakeoutConfig Information needed in the takeout flow
delivery DeliveryConfig Information needed in the delivery flow
latch LatchConfig Information needed in the latch flow
checkout_method_messages [String] Array of String
warranty Bool A boolean value
discounts [Discount] Array of Discount
allow_combined_cart Bool A boolean value
invoice InvoiceConfig Information about invoices

Examples

Example 1

{
    "target_price": false,
    "prices": {
        "price": 13,
        "discount": 11,
        "warranty": 12,
        "delivery_cost": 19,
        "invoice_cost": 19,
        "sms_cost": 10,
        "transaction_cost": 19,
        "price_to_pay": 12,
        "price_with_discount": 15
    },
    "payment": {
        "methods": [
            "point_of_sale",
            "paid_in_shop",
            "bank_transfer",
            "ideal",
            "bancontact",
            "sofort",
            "giropay",
            "creditcard",
            "carte_bleue",
            "paypal",
            "eps_uberweisung",
            "apple_pay",
            "google_pay",
            "payconiq",
            "monizze",
            "edenred",
            "webpay",
            "satispay",
            "stripe_card_visa_mc",
            "stripe_card_amex",
            "stripe_apple_pay",
            "stripe_google_pay",
            "payu_romania_visa",
            "payu_romania_mc",
            "payu_romania_visa_electron",
            "payu_romania_maestro",
            "payu_brazil_amex",
            "payu_brazil_boleto_bancario",
            "payu_brazil_diners",
            "payu_brazil_elo",
            "payu_brazil_hipercard",
            "payu_brazil_mc",
            "payu_brazil_visa",
            "payu_sp_maestro",
            "payu_sp_mc",
            "payu_sp_pbl",
            "payu_sp_visa",
            "payu_sp_blik",
            "payu_iyzico_amex",
            "payu_iyzico_mc",
            "payu_iyzico_troy",
            "payu_iyzico_visa",
            "pesopay_gcash",
            "pesopay_visa",
            "pesopay_mc",
            "redsys_bizum",
            "sibs_id"
        ],
        "messages": [
            "...",
            "...",
            "..."
        ]
    },
    "takeout": {
        "allowed": false
    },
    "delivery": {
        "allowed": true,
        "use_intervals": false,
        "messages": [
            "...",
            "...",
            "..."
        ]
    },
    "latch": {
        "allowed": false,
        "latches": [
            15,
            16,
            16
        ]
    },
    "checkout_method_messages": [
        "...",
        "...",
        "..."
    ],
    "warranty": true,
    "discounts": [
        {
            "name": "...",
            "description": "...",
            "percentage": 9.67,
            "fixed": 16,
            "type": "first-order",
            "code": "..."
        },
        {
            "name": "...",
            "description": "...",
            "percentage": 9.67,
            "fixed": 18,
            "type": "first-order",
            "code": "..."
        },
        {
            "name": "...",
            "description": "...",
            "percentage": 9.67,
            "fixed": 13,
            "type": "first-order",
            "code": "..."
        }
    ],
    "allow_combined_cart": false,
    "invoice": {
        "messages": [
            "...",
            "...",
            "..."
        ]
    }
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
0.2.1 stable