-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathRefundPayment.php
66 lines (54 loc) · 2.27 KB
/
RefundPayment.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
<?php
require_once __DIR__ . DIRECTORY_SEPARATOR . '../../../vendor/autoload.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . '../../../Resources/ExternalConfiguration.php';
require_once __DIR__ . DIRECTORY_SEPARATOR . '../Payments/SimpleAuthorizationInternet.php';
function RefundPayment()
{
$id = SimpleAuthorizationInternet("true")[0]['id'];
$clientReferenceInformationArr = [
"code" => "TC50171_3"
];
$clientReferenceInformation = new CyberSource\Model\Ptsv2paymentsidrefundsClientReferenceInformation($clientReferenceInformationArr);
$orderInformationAmountDetailsArr = [
"totalAmount" => "10",
"currency" => "USD"
];
$orderInformationAmountDetails = new CyberSource\Model\Ptsv2paymentsidcapturesOrderInformationAmountDetails($orderInformationAmountDetailsArr);
$orderInformationArr = [
"amountDetails" => $orderInformationAmountDetails
];
$orderInformation = new CyberSource\Model\Ptsv2paymentsidrefundsOrderInformation($orderInformationArr);
$requestObjArr = [
"clientReferenceInformation" => $clientReferenceInformation,
"orderInformation" => $orderInformation
];
$requestObj = new CyberSource\Model\RefundPaymentRequest($requestObjArr);
$commonElement = new CyberSource\ExternalConfiguration();
$config = $commonElement->ConnectionHost();
$merchantConfig = $commonElement->merchantConfigObject();
$api_client = new CyberSource\ApiClient($config, $merchantConfig);
$api_instance = new CyberSource\Api\RefundApi($api_client);
try {
$apiResponse = $api_instance->refundPayment($requestObj, $id);
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 "\nRefundPayment Sample Code is Running..." . PHP_EOL;
RefundPayment();
}
?>