-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA-checkoutStatus.php
More file actions
39 lines (27 loc) · 1.01 KB
/
A-checkoutStatus.php
File metadata and controls
39 lines (27 loc) · 1.01 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']);
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 "Update payment method\n";
$paymentMethod = $checkoutAPI->updatePaymentMethod($checkout['hash'], PaymentMethod::CARD->value);
echo "Get checkout status\n";
$status = $checkoutAPI->checkoutStatus($checkout['hash']);
echo json_encode($status, JSON_PRETTY_PRINT) . "\n";
echo "URL to use: " . $checkout['url'] . "\n";