/home/techb158/ileadtechnology.com/vendor/mollie/mollie-api-php/examples/orders
NameSizeModeActions
cancel-order-lines.php12570644editdlrm
cancel-order.php7240644editdlrm
create-order.php41080644editdlrm
list-methods.php10080644editdlrm
list-orders.php16610644editdlrm
refund-order-completely.php7570644editdlrm
refund-order-partially.php9990644editdlrm
update-order-line.php22560644editdlrm
update-order-lines-multiple.php21640644editdlrm
update-order.php16730644editdlrm
webhook.php13840644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/mollie/mollie-api-php/examples/orders/update-order.php (1673B)
orders->get("ord_kEn1PlbGa"); $order->billingAddress->organizationName = "Mollie B.V."; $order->billingAddress->streetAndNumber = "Keizersgracht 126"; $order->billingAddress->city = "Amsterdam"; $order->billingAddress->region = "Noord-Holland"; $order->billingAddress->postalCode = "1234AB"; $order->billingAddress->country = "NL"; $order->billingAddress->title = "Dhr"; $order->billingAddress->givenName = "Piet"; $order->billingAddress->familyName = "Mondriaan"; $order->billingAddress->email = "piet@mondriaan.com"; $order->billingAddress->phone = "+31208202070"; $order->update(); /* * Send the customer off to complete the order payment. * This request should always be a GET, thus we enforce 303 http response code */ header("Location: " . $order->getCheckoutUrl(), true, 303); } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }