-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathRefundPayment.cs
More file actions
65 lines (56 loc) · 2.65 KB
/
Copy pathRefundPayment.cs
File metadata and controls
65 lines (56 loc) · 2.65 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
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
using System;
using System.Collections.Generic;
using System.Globalization;
using CyberSource.Api;
using CyberSource.Client;
using CyberSource.Model;
namespace Cybersource_rest_samples_dotnet.Samples.Payments
{
public class RefundPayment
{
public static void WriteLogAudit(int status)
{
var filePath = System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.ToString().Split('.');
var filename = filePath[filePath.Length - 1];
Console.WriteLine($"[Sample Code Testing] [{filename}] {status}");
}
public static async System.Threading.Tasks.Task<PtsV2PaymentsRefundPost201Response> RunAsync()
{
SimpleAuthorizationInternet.CaptureTrueForProcessPayment = true;
var id = (await SimpleAuthorizationInternet.RunAsync()).Id;
string clientReferenceInformationCode = "TC50171_3";
Ptsv2paymentsidrefundsClientReferenceInformation clientReferenceInformation = new Ptsv2paymentsidrefundsClientReferenceInformation(
Code: clientReferenceInformationCode
);
string orderInformationAmountDetailsTotalAmount = "10";
string orderInformationAmountDetailsCurrency = "USD";
Ptsv2paymentsidcapturesOrderInformationAmountDetails orderInformationAmountDetails = new Ptsv2paymentsidcapturesOrderInformationAmountDetails(
TotalAmount: orderInformationAmountDetailsTotalAmount,
Currency: orderInformationAmountDetailsCurrency
);
Ptsv2paymentsidrefundsOrderInformation orderInformation = new Ptsv2paymentsidrefundsOrderInformation(
AmountDetails: orderInformationAmountDetails
);
var requestObj = new RefundPaymentRequest(
ClientReferenceInformation: clientReferenceInformation,
OrderInformation: orderInformation
);
try
{
var configDictionary = new Configuration().GetConfiguration();
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
var apiInstance = new RefundApi(clientConfig);
PtsV2PaymentsRefundPost201Response result = await apiInstance.RefundPaymentAsync(requestObj, id);
Console.WriteLine(result);
WriteLogAudit(apiInstance.GetStatusCode());
return result;
}
catch (ApiException e)
{
Console.WriteLine("Exception on calling the API : " + e.Message);
WriteLogAudit(e.ErrorCode);
return null;
}
}
}
}