����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.139.89.220 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/vendor/mollie/mollie-api-php/examples/captures/ |
Upload File : |
<?php /* * How to prepare a new payment with the Mollie API. */ try { /* * Initialize the Mollie API library with your API key. * * See: https://www.mollie.com/dashboard/developers/api-keys */ require "../initialize.php"; /* * Capture parameters: * amount Amount in EUROs. This example creates a € 5,- capture. The amount can be the original payment amount or lower. * description Description of the capture. * metadata Custom metadata that is stored with the payment. */ $capture = $mollie->paymentCaptures->createForId('tr_WDqYK6vllg', [ "amount" => [ "currency" => "EUR", "value" => "5.00", ], "description" => "Order #12345", ]); echo "<p>New capture created " . htmlspecialchars($capture->id) . " (" . htmlspecialchars($capture->description) . ").</p>"; } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }