forked from payeezy/payeezy-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken-authorize.php
More file actions
37 lines (32 loc) · 1.05 KB
/
token-authorize.php
File metadata and controls
37 lines (32 loc) · 1.05 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
<?php
/*
* Example code for Authorizing & Capture
*/
require_once __DIR__ . '/../vendor/autoload.php';
$client = new Payeezy_Client();
$client->setApiKey("y2sdDUJ0gGnxTyQFUGqDrutPHQ7LbeCS");
$client->setApiSecret("3472aaf343dce18899ed72af1c9f98f5c8b0912c0bfe3defe97cf2d158c0f96f");
$client->setMerchantToken("fdoa-0e8a514fecf2a834e0613becce6e98b30e8a514fecf2a834");
$client->setUrl("https://api-qa.payeezy.com/v1/transactions");
$authorize_card_transaction = new Payeezy_Token($client);
$authorize_response = $authorize_card_transaction->authorize(
[
"merchant_ref" => "Astonishing-Sale",
"transaction_type" => "authorize",
"method" => "token",
"amount" => "200",
"currency_code" => "USD",
"token" => array(
"token_type" => "FDToken",
"token_data" => array(
"type" => "visa",
"value" => "2537446225198291",
"cardholder_name" => "JohnSmith",
"exp_date" => "1030"
)
)
]
);
echo "<pre>";
var_dump($authorize_response);
echo "</pre>";