PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
mollie
/
mollie-api-php
/
examples
/
orders
<?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()); }
[-] refund-order-partially.php
[edit]
[-] update-order.php
[edit]
[+]
..
[-] webhook.php
[edit]
[-] list-orders.php
[edit]
[-] list-methods.php
[edit]
[-] refund-order-completely.php
[edit]
[-] cancel-order.php
[edit]
[-] update-order-line.php
[edit]
[-] cancel-order-lines.php
[edit]
[-] create-order.php
[edit]