-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-getpaymentplans.php
More file actions
39 lines (28 loc) · 1.03 KB
/
3-getpaymentplans.php
File metadata and controls
39 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
require __DIR__ . '/../../vendor/autoload.php';
use Dotenv\Dotenv;
$dotenv = Dotenv::createImmutable(__DIR__ . '/../..');
$dotenv->load();
use Qvickly\Api\Checkout\CheckoutAPI;
use function Qvickly\Api\Payment\Helpers\exampleCheckout;
use Qvickly\Api\Enums\PaymentMethod;
$checkoutAPI = new CheckoutAPI($_ENV['EID'], $_ENV['SECRET'], true, [
// 'BASE_URL' => 'https://api.development.billmate.se/',
// 'CHECKOUT_BASE_URL' => 'https://checkout.development.billmate.se/',
]);
echo "Create checkout\n";
$payload = exampleCheckout();
$checkout = $checkoutAPI->initCheckout($payload);
echo "Step 1\n";
$personalInfo = $checkoutAPI->step1($checkout['hash'], [
'pno' => $_ENV['PNO'],
'email' => $_ENV['EMAIL'],
'type' => 'person',
'zip' => $_ENV['ZIP'],
'phonenumber' => $_ENV['PHONENUMBER'],
]);
echo "Payment plans\n";
$paymentplans = $checkoutAPI->getpaymentplans($checkout['hash']);
echo json_encode($paymentplans, JSON_PRETTY_PRINT) . "\n";
echo "URL to use: " . $checkout['url'] . "\n";