-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathAuthorizationWithCustomerTokenId.php
74 lines (61 loc) · 2.63 KB
/
AuthorizationWithCustomerTokenId.php
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
require_once __DIR__ . DIRECTORY_SEPARATOR . '../../../vendor/autoload.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . '../../../Resources/ExternalConfiguration.php';
function AuthorizationWithCustomerTokenId()
{
$clientReferenceInformationArr = [
"code" => "TC50171_3"
];
$clientReferenceInformation = new CyberSource\Model\Ptsv2paymentsClientReferenceInformation($clientReferenceInformationArr);
$paymentInformationCustomerArr = [
"id" => "AB695DA801DD1BB6E05341588E0A3BDC"
];
$paymentInformationCustomer = new CyberSource\Model\Ptsv2paymentsPaymentInformationCustomer($paymentInformationCustomerArr);
$paymentInformationArr = [
"customer" => $paymentInformationCustomer
];
$paymentInformation = new CyberSource\Model\Ptsv2paymentsPaymentInformation($paymentInformationArr);
$orderInformationAmountDetailsArr = [
"totalAmount" => "102.21",
"currency" => "USD"
];
$orderInformationAmountDetails = new CyberSource\Model\Ptsv2paymentsOrderInformationAmountDetails($orderInformationAmountDetailsArr);
$orderInformationArr = [
"amountDetails" => $orderInformationAmountDetails
];
$orderInformation = new CyberSource\Model\Ptsv2paymentsOrderInformation($orderInformationArr);
$requestObjArr = [
"clientReferenceInformation" => $clientReferenceInformation,
"paymentInformation" => $paymentInformation,
"orderInformation" => $orderInformation
];
$requestObj = new CyberSource\Model\CreatePaymentRequest($requestObjArr);
$commonElement = new CyberSource\ExternalConfiguration();
$config = $commonElement->ConnectionHost();
$merchantConfig = $commonElement->merchantConfigObject();
$api_client = new CyberSource\ApiClient($config, $merchantConfig);
$api_instance = new CyberSource\Api\PaymentsApi($api_client);
try {
$apiResponse = $api_instance->createPayment($requestObj);
print_r(PHP_EOL);
print_r($apiResponse);
WriteLogAudit($apiResponse[1]);
return $apiResponse;
} catch (Cybersource\ApiException $e) {
print_r($e->getResponseBody());
print_r($e->getMessage());
$errorCode = $e->getCode();
WriteLogAudit($errorCode);
}
}
if (!function_exists('WriteLogAudit')){
function WriteLogAudit($status){
$sampleCode = basename(__FILE__, '.php');
print_r("\n[Sample Code Testing] [$sampleCode] $status");
}
}
if(!defined('DO_NOT_RUN_SAMPLES')){
echo "\nAuthorizationWithCustomerTokenId Sample Code is Running..." . PHP_EOL;
AuthorizationWithCustomerTokenId();
}
?>