Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/klarna/kco_rest/docs/examples/checkout/
Upload File :
Current File : /var/test/www/storage2/vendor/klarna/kco_rest/docs/examples/checkout/update_checkout.php

<?php
/**
 * Update a checkout order.
 */

require_once dirname(dirname(dirname(__DIR__))) . '/vendor/autoload.php';

$merchantId = getenv('MERCHANT_ID') ?: '0';
$sharedSecret = getenv('SHARED_SECRET') ?: 'sharedSecret';
$orderId = getenv('ORDER_ID') ?: '12345';

$connector = Klarna\Rest\Transport\Connector::create(
    $merchantId,
    $sharedSecret,
    Klarna\Rest\Transport\ConnectorInterface::EU_TEST_BASE_URL
);

$checkout = new Klarna\Rest\Checkout\Order($connector, $orderId);
$checkout->update([
    "order_amount" => 11000,
    "order_tax_amount" => 2200,
    "order_lines" => [
        [
            "type" => "physical",
            "reference" => "123050",
            "name" => "Tomatoes",
            "quantity" => 10,
            "quantity_unit" => "kg",
            "unit_price" => 600,
            "tax_rate" => 2500,
            "total_amount" => 6000,
            "total_tax_amount" => 1200
        ],
        [
            "type" => "physical",
            "reference" => "543670",
            "name" => "Bananas",
            "quantity" => 1,
            "quantity_unit" => "bag",
            "unit_price" => 5000,
            "tax_rate" => 2500,
            "total_amount" => 4000,
            "total_discount_amount" => 1000,
            "total_tax_amount" => 800
        ],
        [
            "type" => "shipping_fee",
            "name" => "Express delivery",
            "quantity" => 1,
            "unit_price" => 1000,
            "tax_rate" => 2500,
            "total_amount" => 1000,
            "total_tax_amount" => 200
        ]
    ]
]);