Skip to content

Commit b2f9ada

Browse files
authored
Merge pull request #46 from CyberSource/july-2020
July 2020 Release
2 parents 249922a + d51c921 commit b2f9ada

File tree

1,188 files changed

+65568
-23493
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,188 files changed

+65568
-23493
lines changed

docs/AsymmetricKeyManagementApi.md

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
# CyberSource.AsymmetricKeyManagementApi
2+
3+
All URIs are relative to *https://apitest.cybersource.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**createP12Keys**](AsymmetricKeyManagementApi.md#createP12Keys) | **POST** /kms/v2/keys-asym | Create one or more PKCS#12 keys
8+
[**deleteBulkP12Keys**](AsymmetricKeyManagementApi.md#deleteBulkP12Keys) | **POST** /kms/v2/keys-asym/deletes | Delete one or more PKCS#12 keys
9+
[**getP12KeyDetails**](AsymmetricKeyManagementApi.md#getP12KeyDetails) | **GET** /kms/v2/keys-asym/{keyId} | Retrieves PKCS#12 key details
10+
11+
12+
<a name="createP12Keys"></a>
13+
# **createP12Keys**
14+
> InlineResponse2011 createP12Keys(createP12KeysRequest)
15+
16+
Create one or more PKCS#12 keys
17+
18+
&#39;Create one or more PKCS#12 keys&#39;
19+
20+
### Example
21+
```javascript
22+
var CyberSource = require('CyberSource');
23+
24+
var apiInstance = new CyberSource.AsymmetricKeyManagementApi();
25+
26+
var createP12KeysRequest = new CyberSource.CreateP12KeysRequest(); // CreateP12KeysRequest |
27+
28+
29+
var callback = function(error, data, response) {
30+
if (error) {
31+
console.error(error);
32+
} else {
33+
console.log('API called successfully. Returned data: ' + data);
34+
}
35+
};
36+
apiInstance.createP12Keys(createP12KeysRequest, callback);
37+
```
38+
39+
### Parameters
40+
41+
Name | Type | Description | Notes
42+
------------- | ------------- | ------------- | -------------
43+
**createP12KeysRequest** | [**CreateP12KeysRequest**](CreateP12KeysRequest.md)| |
44+
45+
### Return type
46+
47+
[**InlineResponse2011**](InlineResponse2011.md)
48+
49+
### Authorization
50+
51+
No authorization required
52+
53+
### HTTP request headers
54+
55+
- **Content-Type**: application/json;charset=utf-8
56+
- **Accept**: application/hal+json;charset=utf-8
57+
58+
<a name="deleteBulkP12Keys"></a>
59+
# **deleteBulkP12Keys**
60+
> InlineResponse2003 deleteBulkP12Keys(deleteBulkP12KeysRequest)
61+
62+
Delete one or more PKCS#12 keys
63+
64+
&#39;Delete one or more PKCS#12 keys&#39;
65+
66+
### Example
67+
```javascript
68+
var CyberSource = require('CyberSource');
69+
70+
var apiInstance = new CyberSource.AsymmetricKeyManagementApi();
71+
72+
var deleteBulkP12KeysRequest = new CyberSource.DeleteBulkP12KeysRequest(); // DeleteBulkP12KeysRequest |
73+
74+
75+
var callback = function(error, data, response) {
76+
if (error) {
77+
console.error(error);
78+
} else {
79+
console.log('API called successfully. Returned data: ' + data);
80+
}
81+
};
82+
apiInstance.deleteBulkP12Keys(deleteBulkP12KeysRequest, callback);
83+
```
84+
85+
### Parameters
86+
87+
Name | Type | Description | Notes
88+
------------- | ------------- | ------------- | -------------
89+
**deleteBulkP12KeysRequest** | [**DeleteBulkP12KeysRequest**](DeleteBulkP12KeysRequest.md)| |
90+
91+
### Return type
92+
93+
[**InlineResponse2003**](InlineResponse2003.md)
94+
95+
### Authorization
96+
97+
No authorization required
98+
99+
### HTTP request headers
100+
101+
- **Content-Type**: application/json;charset=utf-8
102+
- **Accept**: application/hal+json;charset=utf-8
103+
104+
<a name="getP12KeyDetails"></a>
105+
# **getP12KeyDetails**
106+
> InlineResponse2002 getP12KeyDetails(keyId)
107+
108+
Retrieves PKCS#12 key details
109+
110+
Retrieves keys details by providing the key id.
111+
112+
### Example
113+
```javascript
114+
var CyberSource = require('CyberSource');
115+
116+
var apiInstance = new CyberSource.AsymmetricKeyManagementApi();
117+
118+
var keyId = "keyId_example"; // String | Key ID.
119+
120+
121+
var callback = function(error, data, response) {
122+
if (error) {
123+
console.error(error);
124+
} else {
125+
console.log('API called successfully. Returned data: ' + data);
126+
}
127+
};
128+
apiInstance.getP12KeyDetails(keyId, callback);
129+
```
130+
131+
### Parameters
132+
133+
Name | Type | Description | Notes
134+
------------- | ------------- | ------------- | -------------
135+
**keyId** | **String**| Key ID. |
136+
137+
### Return type
138+
139+
[**InlineResponse2002**](InlineResponse2002.md)
140+
141+
### Authorization
142+
143+
No authorization required
144+
145+
### HTTP request headers
146+
147+
- **Content-Type**: application/json;charset=utf-8
148+
- **Accept**: application/hal+json;charset=utf-8
149+

docs/AuthorizationOptions.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

docs/BillTo.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

docs/BuyerInformation.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/CapturePaymentRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
1414
**pointOfSaleInformation** | [**Ptsv2paymentsidcapturesPointOfSaleInformation**](Ptsv2paymentsidcapturesPointOfSaleInformation.md) | | [optional]
1515
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The object containing the custom data that the merchant defines. | [optional]
1616
**installmentInformation** | [**Ptsv2paymentsidcapturesInstallmentInformation**](Ptsv2paymentsidcapturesInstallmentInformation.md) | | [optional]
17-
**travelInformation** | [**Ptsv2paymentsidcapturesTravelInformation**](Ptsv2paymentsidcapturesTravelInformation.md) | | [optional]
17+
**travelInformation** | [**Ptsv2paymentsTravelInformation**](Ptsv2paymentsTravelInformation.md) | | [optional]
1818
**promotionInformation** | [**Ptsv2paymentsPromotionInformation**](Ptsv2paymentsPromotionInformation.md) | | [optional]
1919

2020

docs/CheckPayerAuthEnrollmentRequest.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**clientReferenceInformation** | [**Riskv1authenticationsClientReferenceInformation**](Riskv1authenticationsClientReferenceInformation.md) | | [optional]
6+
**clientReferenceInformation** | [**Riskv1authenticationsetupsClientReferenceInformation**](Riskv1authenticationsetupsClientReferenceInformation.md) | | [optional]
77
**orderInformation** | [**Riskv1authenticationsOrderInformation**](Riskv1authenticationsOrderInformation.md) | | [optional]
88
**paymentInformation** | [**Riskv1authenticationsPaymentInformation**](Riskv1authenticationsPaymentInformation.md) | | [optional]
9-
**processingInformation** | [**Riskv1authenticationsProcessingInformation**](Riskv1authenticationsProcessingInformation.md) | | [optional]
9+
**processingInformation** | [**Riskv1authenticationsetupsProcessingInformation**](Riskv1authenticationsetupsProcessingInformation.md) | | [optional]
10+
**tokenInformation** | [**Riskv1authenticationsetupsTokenInformation**](Riskv1authenticationsetupsTokenInformation.md) | | [optional]
1011
**buyerInformation** | [**Riskv1authenticationsBuyerInformation**](Riskv1authenticationsBuyerInformation.md) | | [optional]
1112
**deviceInformation** | [**Riskv1authenticationsDeviceInformation**](Riskv1authenticationsDeviceInformation.md) | | [optional]
1213
**merchantInformation** | [**Riskv1decisionsMerchantInformation**](Riskv1decisionsMerchantInformation.md) | | [optional]

docs/CreateCreditRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
1414
**pointOfSaleInformation** | [**Ptsv2paymentsPointOfSaleInformation**](Ptsv2paymentsPointOfSaleInformation.md) | | [optional]
1515
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The object containing the custom data that the merchant defines. | [optional]
1616
**installmentInformation** | [**Ptsv2creditsInstallmentInformation**](Ptsv2creditsInstallmentInformation.md) | | [optional]
17-
**travelInformation** | [**Ptsv2paymentsidcapturesTravelInformation**](Ptsv2paymentsidcapturesTravelInformation.md) | | [optional]
17+
**travelInformation** | [**Ptsv2paymentsTravelInformation**](Ptsv2paymentsTravelInformation.md) | | [optional]
1818
**promotionInformation** | [**Ptsv2paymentsPromotionInformation**](Ptsv2paymentsPromotionInformation.md) | | [optional]
1919

2020

docs/CreateInstrumentIdentifierRequest.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/CreateP12KeysRequest.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# CyberSource.CreateP12KeysRequest
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**clientReferenceInformation** | [**Kmsv2keyssymClientReferenceInformation**](Kmsv2keyssymClientReferenceInformation.md) | | [optional]
7+
**keyInformation** | [**[Kmsv2keysasymKeyInformation]**](Kmsv2keysasymKeyInformation.md) | | [optional]
8+
9+

docs/CreatePaymentInstrumentRequest.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)