Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../telnyx/../filp/../phpstan/../nikic/../psy/.././bin/../hamcrest/../doctrine/../dragonmantank/../egulias/../mollie/mollie-api-php/examples/orders
الملفات الموجودة في هذا الـ Path:
.
..
cancel-order-lines.php
cancel-order.php
create-order.php
list-methods.php
list-orders.php
refund-order-completely.php
refund-order-partially.php
update-order-line.php
update-order-lines-multiple.php
update-order.php
webhook.php

مشاهدة ملف: refund-order-partially.php

<?php
/*
 * Refund some items for an order using the Mollie API.
 */

try {
    /*
     * Initialize the Mollie API library with your API key or OAuth access token.
     */
    require "../initialize.php";

    /*
     * Refund 1 item of order line "odl_dgtxyl" for an order with ID "ord_8wmqcHMN4U".
     *
     * See: https://docs.mollie.com/reference/v2/orders-api/create-order-refund
     */

    $order = $mollie->orders->get('ord_8wmqcHMN4U');
    $refund = $order->refund([
        'lines' => [
            [
                'id' => 'odl_dgtxyl',
                'quantity' => 1,
            ],
        ],
        "description" => "Required quantity not in stock, refunding one photo book.",
    ]);

    echo 'Refund ' . $refund->id . ' was created for part of your order ' . $order->id;
    echo 'You will receive ' . $refund->amount->currency . $refund->amount->value;
} catch (\Mollie\Api\Exceptions\ApiException $e) {
    echo "API call failed: " . htmlspecialchars($e->getMessage());
}