Skip to content

Commit 9187ecd

Browse files
authored
Merge pull request #17 from CyberSource/mar2019rel
+Updating for new version of SDK
2 parents faf0a86 + e4e1444 commit 9187ecd

File tree

980 files changed

+34117
-8154
lines changed

Some content is hidden

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

980 files changed

+34117
-8154
lines changed

docs/CapturePaymentRequest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**merchantInformation** | [**Ptsv2paymentsidcapturesMerchantInformation**](Ptsv2paymentsidcapturesMerchantInformation.md) | | [optional]
1313
**aggregatorInformation** | [**Ptsv2paymentsidcapturesAggregatorInformation**](Ptsv2paymentsidcapturesAggregatorInformation.md) | | [optional]
1414
**pointOfSaleInformation** | [**Ptsv2paymentsidcapturesPointOfSaleInformation**](Ptsv2paymentsidcapturesPointOfSaleInformation.md) | | [optional]
15-
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | Description of this field is not available. | [optional]
15+
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The description for this field is not available. | [optional]
16+
**installmentInformation** | [**Ptsv2paymentsidcapturesInstallmentInformation**](Ptsv2paymentsidcapturesInstallmentInformation.md) | | [optional]
1617

1718

docs/ConversionDetailsApi.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# CyberSource.ConversionDetailsApi
2+
3+
All URIs are relative to *https://apitest.cybersource.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**getConversionDetail**](ConversionDetailsApi.md#getConversionDetail) | **GET** /reporting/v3/conversion-details | Get conversion detail transactions
8+
9+
10+
<a name="getConversionDetail"></a>
11+
# **getConversionDetail**
12+
> ReportingV3ConversionDetailsGet200Response getConversionDetail(startTime, endTime, opts)
13+
14+
Get conversion detail transactions
15+
16+
Get conversion detail of transactions for a merchant.
17+
18+
### Example
19+
```javascript
20+
var CyberSource = require('CyberSource');
21+
22+
var apiInstance = new CyberSource.ConversionDetailsApi();
23+
24+
var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd'T'HH:mm:ssXXX
25+
26+
var endTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd'T'HH:mm:ssXXX
27+
28+
var opts = {
29+
'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
30+
};
31+
32+
var callback = function(error, data, response) {
33+
if (error) {
34+
console.error(error);
35+
} else {
36+
console.log('API called successfully. Returned data: ' + data);
37+
}
38+
};
39+
apiInstance.getConversionDetail(startTime, endTime, opts, callback);
40+
```
41+
42+
### Parameters
43+
44+
Name | Type | Description | Notes
45+
------------- | ------------- | ------------- | -------------
46+
**startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ssXXX |
47+
**endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ssXXX |
48+
**organizationId** | **String**| Valid Cybersource Organization Id | [optional]
49+
50+
### Return type
51+
52+
[**ReportingV3ConversionDetailsGet200Response**](ReportingV3ConversionDetailsGet200Response.md)
53+
54+
### Authorization
55+
56+
No authorization required
57+
58+
### HTTP request headers
59+
60+
- **Content-Type**: application/json;charset=utf-8
61+
- **Accept**: application/hal+json
62+

docs/CreateCreditRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Name | Type | Description | Notes
1212
**merchantInformation** | [**Ptsv2paymentsidrefundsMerchantInformation**](Ptsv2paymentsidrefundsMerchantInformation.md) | | [optional]
1313
**aggregatorInformation** | [**Ptsv2paymentsidcapturesAggregatorInformation**](Ptsv2paymentsidcapturesAggregatorInformation.md) | | [optional]
1414
**pointOfSaleInformation** | [**Ptsv2creditsPointOfSaleInformation**](Ptsv2creditsPointOfSaleInformation.md) | | [optional]
15-
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | Description of this field is not available. | [optional]
15+
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The description for this field is not available. | [optional]
1616

1717

docs/CreatePaymentRequest.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**clientReferenceInformation** | [**Ptsv2paymentsClientReferenceInformation**](Ptsv2paymentsClientReferenceInformation.md) | | [optional]
77
**processingInformation** | [**Ptsv2paymentsProcessingInformation**](Ptsv2paymentsProcessingInformation.md) | | [optional]
8+
**issuerInformation** | [**Ptsv2paymentsIssuerInformation**](Ptsv2paymentsIssuerInformation.md) | | [optional]
89
**paymentInformation** | [**Ptsv2paymentsPaymentInformation**](Ptsv2paymentsPaymentInformation.md) | | [optional]
910
**orderInformation** | [**Ptsv2paymentsOrderInformation**](Ptsv2paymentsOrderInformation.md) | | [optional]
1011
**buyerInformation** | [**Ptsv2paymentsBuyerInformation**](Ptsv2paymentsBuyerInformation.md) | | [optional]
@@ -14,6 +15,7 @@ Name | Type | Description | Notes
1415
**aggregatorInformation** | [**Ptsv2paymentsAggregatorInformation**](Ptsv2paymentsAggregatorInformation.md) | | [optional]
1516
**consumerAuthenticationInformation** | [**Ptsv2paymentsConsumerAuthenticationInformation**](Ptsv2paymentsConsumerAuthenticationInformation.md) | | [optional]
1617
**pointOfSaleInformation** | [**Ptsv2paymentsPointOfSaleInformation**](Ptsv2paymentsPointOfSaleInformation.md) | | [optional]
17-
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | Description of this field is not available. | [optional]
18+
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The description for this field is not available. | [optional]
19+
**installmentInformation** | [**Ptsv2paymentsInstallmentInformation**](Ptsv2paymentsInstallmentInformation.md) | | [optional]
1820

1921

docs/InlineResponse400.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**type** | **String** | | [optional]
7-
**message** | **String** | The detailed message related to the type stated above. | [optional]
8-
**details** | [**Tmsv1instrumentidentifiersDetails**](Tmsv1instrumentidentifiersDetails.md) | | [optional]
6+
**code** | **String** | Error code |
7+
**message** | **String** | Error message |
8+
**localizationKey** | **String** | Localization Key Name | [optional]
9+
**correlationId** | **String** | Correlation Id | [optional]
10+
**detail** | **String** | Error Detail | [optional]
11+
**fields** | [**[InlineResponse400Fields]**](InlineResponse400Fields.md) | Error fields List | [optional]
912

1013

docs/InlineResponse4001.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CyberSource.InlineResponse4001
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**type** | **String** | | [optional]
7+
**message** | **String** | The detailed message related to the type stated above. | [optional]
8+
**details** | [**Tmsv1instrumentidentifiersDetails**](Tmsv1instrumentidentifiersDetails.md) | | [optional]
9+
10+

docs/InlineResponse400Fields.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CyberSource.InlineResponse400Fields
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**path** | **String** | Path of the failed property | [optional]
7+
**message** | **String** | Error description about validation failed field | [optional]
8+
**localizationKey** | **String** | Localized Key Name | [optional]
9+
10+

docs/NetFundingsApi.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# CyberSource.NetFundingsApi
2+
3+
All URIs are relative to *https://apitest.cybersource.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**getNetFundingInfo**](NetFundingsApi.md#getNetFundingInfo) | **GET** /reporting/v3/net-fundings | Get Netfunding information for an account or a merchant
8+
9+
10+
<a name="getNetFundingInfo"></a>
11+
# **getNetFundingInfo**
12+
> ReportingV3NetFundingsGet200Response getNetFundingInfo(startTime, endTime, opts)
13+
14+
Get Netfunding information for an account or a merchant
15+
16+
Get Netfunding information for an account or a merchant.
17+
18+
### Example
19+
```javascript
20+
var CyberSource = require('CyberSource');
21+
22+
var apiInstance = new CyberSource.NetFundingsApi();
23+
24+
var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd'T'HH:mm:ssXXX
25+
26+
var endTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd'T'HH:mm:ssXXX
27+
28+
var opts = {
29+
'organizationId': "organizationId_example", // String | Valid Cybersource Organization Id
30+
'groupName': "groupName_example" // String | Valid CyberSource Group Name.
31+
};
32+
33+
var callback = function(error, data, response) {
34+
if (error) {
35+
console.error(error);
36+
} else {
37+
console.log('API called successfully. Returned data: ' + data);
38+
}
39+
};
40+
apiInstance.getNetFundingInfo(startTime, endTime, opts, callback);
41+
```
42+
43+
### Parameters
44+
45+
Name | Type | Description | Notes
46+
------------- | ------------- | ------------- | -------------
47+
**startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ssXXX |
48+
**endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format. - https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14 **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ssXXX |
49+
**organizationId** | **String**| Valid Cybersource Organization Id | [optional]
50+
**groupName** | **String**| Valid CyberSource Group Name. | [optional]
51+
52+
### Return type
53+
54+
[**ReportingV3NetFundingsGet200Response**](ReportingV3NetFundingsGet200Response.md)
55+
56+
### Authorization
57+
58+
No authorization required
59+
60+
### HTTP request headers
61+
62+
- **Content-Type**: application/json;charset=utf-8
63+
- **Accept**: application/hal+json
64+

docs/NotificationOfChangesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Method | HTTP request | Description
1313
1414
Get Notification Of Changes
1515

16-
Notification of Change Report
16+
Download the Notification of Change report. This report shows eCheck-related fields updated as a result of a response to an eCheck settlement transaction.
1717

1818
### Example
1919
```javascript

docs/PaymentInstrumentsApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ No authorization required
160160

161161
<a name="tmsV1PaymentinstrumentsTokenIdGet"></a>
162162
# **tmsV1PaymentinstrumentsTokenIdGet**
163-
> TmsV1PaymentinstrumentsPost201Response tmsV1PaymentinstrumentsTokenIdGet(profileId, tokenId)
163+
> TmsV1PaymentinstrumentsGet200Response tmsV1PaymentinstrumentsTokenIdGet(profileId, tokenId)
164164
165165
Retrieve a Payment Instrument
166166

@@ -194,7 +194,7 @@ Name | Type | Description | Notes
194194

195195
### Return type
196196

197-
[**TmsV1PaymentinstrumentsPost201Response**](TmsV1PaymentinstrumentsPost201Response.md)
197+
[**TmsV1PaymentinstrumentsGet200Response**](TmsV1PaymentinstrumentsGet200Response.md)
198198

199199
### Authorization
200200

@@ -207,7 +207,7 @@ No authorization required
207207

208208
<a name="tmsV1PaymentinstrumentsTokenIdPatch"></a>
209209
# **tmsV1PaymentinstrumentsTokenIdPatch**
210-
> TmsV1PaymentinstrumentsPost201Response tmsV1PaymentinstrumentsTokenIdPatch(profileId, tokenId, body)
210+
> TmsV1PaymentinstrumentsGet200Response tmsV1PaymentinstrumentsTokenIdPatch(profileId, tokenId, body)
211211
212212
Update a Payment Instrument
213213

@@ -244,7 +244,7 @@ Name | Type | Description | Notes
244244

245245
### Return type
246246

247-
[**TmsV1PaymentinstrumentsPost201Response**](TmsV1PaymentinstrumentsPost201Response.md)
247+
[**TmsV1PaymentinstrumentsGet200Response**](TmsV1PaymentinstrumentsGet200Response.md)
248248

249249
### Authorization
250250

0 commit comments

Comments
 (0)