-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathValidateAuthenticationResults.cs
88 lines (76 loc) · 4.35 KB
/
ValidateAuthenticationResults.cs
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
using System.Collections.Generic;
using System.Globalization;
using CyberSource.Api;
using CyberSource.Model;
namespace Cybersource_rest_samples_dotnet.Samples.PayerAuthentication
{
public class ValidateAuthenticationResults
{
public static RiskV1AuthenticationResultsPost201Response Run()
{
string clientReferenceInformationCode = "pavalidatecheck";
Riskv1authenticationsetupsClientReferenceInformation clientReferenceInformation = new Riskv1authenticationsetupsClientReferenceInformation(
Code: clientReferenceInformationCode
);
string orderInformationAmountDetailsCurrency = "USD";
string orderInformationAmountDetailsTotalAmount = "200.00";
Riskv1authenticationsOrderInformationAmountDetails orderInformationAmountDetails = new Riskv1authenticationsOrderInformationAmountDetails(
Currency: orderInformationAmountDetailsCurrency,
TotalAmount: orderInformationAmountDetailsTotalAmount
);
List<Riskv1authenticationresultsOrderInformationLineItems> orderInformationLineItems = new List<Riskv1authenticationresultsOrderInformationLineItems>();
string orderInformationLineItemsUnitPrice1 = "10";
int orderInformationLineItemsQuantity1 = 2;
string orderInformationLineItemsTaxAmount1 = "32.40";
orderInformationLineItems.Add(new Riskv1authenticationresultsOrderInformationLineItems(
UnitPrice: orderInformationLineItemsUnitPrice1,
Quantity: orderInformationLineItemsQuantity1,
TaxAmount: orderInformationLineItemsTaxAmount1
));
Riskv1authenticationresultsOrderInformation orderInformation = new Riskv1authenticationresultsOrderInformation(
AmountDetails: orderInformationAmountDetails,
LineItems: orderInformationLineItems
);
string paymentInformationCardType = "002";
string paymentInformationCardExpirationMonth = "12";
string paymentInformationCardExpirationYear = "2025";
string paymentInformationCardNumber = "5200000000000007";
Riskv1authenticationresultsPaymentInformationCard paymentInformationCard = new Riskv1authenticationresultsPaymentInformationCard(
Type: paymentInformationCardType,
ExpirationMonth: paymentInformationCardExpirationMonth,
ExpirationYear: paymentInformationCardExpirationYear,
Number: paymentInformationCardNumber
);
Riskv1authenticationresultsPaymentInformation paymentInformation = new Riskv1authenticationresultsPaymentInformation(
Card: paymentInformationCard
);
string consumerAuthenticationInformationAuthenticationTransactionId = "PYffv9G3sa1e0CQr5fV0";
string consumerAuthenticationInformationSignedPares = "eNqdmFmT4jgSgN+J4D90zD4yMz45PEFVhHzgA2zwjXnzhQ984Nvw61dAV1";
Riskv1authenticationresultsConsumerAuthenticationInformation consumerAuthenticationInformation = new Riskv1authenticationresultsConsumerAuthenticationInformation(
AuthenticationTransactionId: consumerAuthenticationInformationAuthenticationTransactionId,
SignedPares: consumerAuthenticationInformationSignedPares
);
var requestObj = new ValidateRequest(
ClientReferenceInformation: clientReferenceInformation,
OrderInformation: orderInformation,
PaymentInformation: paymentInformation,
ConsumerAuthenticationInformation: consumerAuthenticationInformation
);
try
{
var configDictionary = new Configuration().GetConfiguration();
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
var apiInstance = new PayerAuthenticationApi(clientConfig);
RiskV1AuthenticationResultsPost201Response result = apiInstance.ValidateAuthenticationResults(requestObj);
Console.WriteLine(result);
return result;
}
catch (Exception e)
{
Console.WriteLine("Exception on calling the API : " + e.Message);
return null;
}
}
}
}