Viewing file: create-payment-link.php (1.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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";
/* * Determine the url parts to these example files. */ $protocol = isset($_SERVER['HTTPS']) && strcasecmp('off', $_SERVER['HTTPS']) !== 0 ? "https" : "http"; $hostname = $_SERVER['HTTP_HOST']; $path = dirname($_SERVER['REQUEST_URI'] ?? $_SERVER['PHP_SELF']);
/* * Required Payment Link parameters: * amount Amount in EUROs. This example creates a € 10,- payment. * description Description of the payment. */ $paymentLink = $mollie->paymentLinks->create([ "amount" => [ "currency" => "EUR", "value" => "10.00", // You must send the correct number of decimals, thus we enforce the use of strings ], "description" => "Bicycle tires", "webhookUrl" => "{$protocol}://{$hostname}{$path}/webhook.php", // optional ]);
/* * Send the customer off to complete the payment. * This request should always be a GET, thus we enforce 303 http response code */ header("Location: " . $paymentLink->getCheckoutUrl(), true, 303); } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }
|