cybersource-rest-client 0.0.32 → 0.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/docs/ChargebackDetailsApi.md +62 -0
  2. package/docs/ChargebackSummariesApi.md +62 -0
  3. package/docs/ConversionDetailsApi.md +2 -2
  4. package/docs/InterchangeClearingLevelDetailsApi.md +62 -0
  5. package/docs/NetFundingsApi.md +2 -2
  6. package/docs/PaymentBatchSummariesApi.md +2 -2
  7. package/docs/Ptsv2paymentsClientReferenceInformation.md +1 -0
  8. package/docs/PurchaseAndRefundDetailsApi.md +2 -2
  9. package/docs/ReportDefinitionsApi.md +4 -4
  10. package/docs/ReportDownloadsApi.md +2 -2
  11. package/docs/ReportSubscriptionsApi.md +10 -10
  12. package/docs/ReportingV3ChargebackDetailsGet200Response.md +11 -0
  13. package/docs/ReportingV3ChargebackDetailsGet200ResponseChargebackDetails.md +29 -0
  14. package/docs/ReportingV3ChargebackSummariesGet200Response.md +11 -0
  15. package/docs/ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries.md +10 -0
  16. package/docs/ReportingV3InterchangeClearingLevelDetailsGet200Response.md +10 -0
  17. package/docs/ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails.md +58 -0
  18. package/docs/ReportingV3RetrievalDetailsGet200Response.md +11 -0
  19. package/docs/ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails.md +29 -0
  20. package/docs/ReportingV3RetrievalSummariesGet200Response.md +11 -0
  21. package/docs/ReportsApi.md +6 -6
  22. package/docs/RetrievalDetailsApi.md +62 -0
  23. package/docs/RetrievalSummariesApi.md +62 -0
  24. package/package.json +2 -2
  25. package/src/api/ChargebackDetailsApi.js +111 -0
  26. package/src/api/ChargebackSummariesApi.js +111 -0
  27. package/src/api/ConversionDetailsApi.js +1 -1
  28. package/src/api/InterchangeClearingLevelDetailsApi.js +111 -0
  29. package/src/api/NetFundingsApi.js +1 -1
  30. package/src/api/PaymentBatchSummariesApi.js +1 -1
  31. package/src/api/PurchaseAndRefundDetailsApi.js +1 -1
  32. package/src/api/ReportDefinitionsApi.js +2 -2
  33. package/src/api/ReportDownloadsApi.js +1 -1
  34. package/src/api/ReportSubscriptionsApi.js +5 -5
  35. package/src/api/ReportsApi.js +3 -3
  36. package/src/api/RetrievalDetailsApi.js +111 -0
  37. package/src/api/RetrievalSummariesApi.js +111 -0
  38. package/src/index.js +73 -3
  39. package/src/model/Ptsv2paymentsClientReferenceInformation.js +9 -0
  40. package/src/model/ReportingV3ChargebackDetailsGet200Response.js +109 -0
  41. package/src/model/ReportingV3ChargebackDetailsGet200ResponseChargebackDetails.js +271 -0
  42. package/src/model/ReportingV3ChargebackSummariesGet200Response.js +109 -0
  43. package/src/model/ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries.js +100 -0
  44. package/src/model/ReportingV3InterchangeClearingLevelDetailsGet200Response.js +100 -0
  45. package/src/model/ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails.js +485 -0
  46. package/src/model/ReportingV3RetrievalDetailsGet200Response.js +109 -0
  47. package/src/model/ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails.js +271 -0
  48. package/src/model/ReportingV3RetrievalSummariesGet200Response.js +109 -0
@@ -0,0 +1,62 @@
1
+ # CyberSource.ChargebackDetailsApi
2
+
3
+ All URIs are relative to *https://apitest.cybersource.com*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**getChargebackDetails**](ChargebackDetailsApi.md#getChargebackDetails) | **GET** /reporting/v3/chargeback-details | Get Chargeback Details
8
+
9
+
10
+ <a name="getChargebackDetails"></a>
11
+ # **getChargebackDetails**
12
+ > ReportingV3ChargebackDetailsGet200Response getChargebackDetails(startTime, endTime, opts)
13
+
14
+ Get Chargeback Details
15
+
16
+ Chargeback Detail Report Description
17
+
18
+ ### Example
19
+ ```javascript
20
+ var CyberSource = require('CyberSource');
21
+
22
+ var apiInstance = new CyberSource.ChargebackDetailsApi();
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
+
28
+ var opts = {
29
+ 'organizationId': "organizationId_example" // String | Valid 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.getChargebackDetails(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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
47
+ **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
48
+ **organizationId** | **String**| Valid Organization Id | [optional]
49
+
50
+ ### Return type
51
+
52
+ [**ReportingV3ChargebackDetailsGet200Response**](ReportingV3ChargebackDetailsGet200Response.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, application/xml
62
+
@@ -0,0 +1,62 @@
1
+ # CyberSource.ChargebackSummariesApi
2
+
3
+ All URIs are relative to *https://apitest.cybersource.com*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**getChargebackSummaries**](ChargebackSummariesApi.md#getChargebackSummaries) | **GET** /reporting/v3/chargeback-summaries | Get Chargeback Summaries
8
+
9
+
10
+ <a name="getChargebackSummaries"></a>
11
+ # **getChargebackSummaries**
12
+ > ReportingV3ChargebackSummariesGet200Response getChargebackSummaries(startTime, endTime, opts)
13
+
14
+ Get Chargeback Summaries
15
+
16
+ Chargeback Summary Report Description
17
+
18
+ ### Example
19
+ ```javascript
20
+ var CyberSource = require('CyberSource');
21
+
22
+ var apiInstance = new CyberSource.ChargebackSummariesApi();
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
+
28
+ var opts = {
29
+ 'organizationId': "organizationId_example" // String | Valid 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.getChargebackSummaries(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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
47
+ **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
48
+ **organizationId** | **String**| Valid Organization Id | [optional]
49
+
50
+ ### Return type
51
+
52
+ [**ReportingV3ChargebackSummariesGet200Response**](ReportingV3ChargebackSummariesGet200Response.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, application/xml
62
+
@@ -26,7 +26,7 @@ var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report St
26
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
27
 
28
28
  var opts = {
29
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
29
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
30
30
  };
31
31
 
32
32
  var callback = function(error, data, response) {
@@ -45,7 +45,7 @@ Name | Type | Description | Notes
45
45
  ------------- | ------------- | ------------- | -------------
46
46
  **startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
47
47
  **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
48
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
48
+ **organizationId** | **String**| Valid Organization Id | [optional]
49
49
 
50
50
  ### Return type
51
51
 
@@ -0,0 +1,62 @@
1
+ # CyberSource.InterchangeClearingLevelDetailsApi
2
+
3
+ All URIs are relative to *https://apitest.cybersource.com*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**getInterchangeClearingLevelDetails**](InterchangeClearingLevelDetailsApi.md#getInterchangeClearingLevelDetails) | **GET** /reporting/v3/interchange-clearing-level-details | Interchange Clearing Level data for an account or a merchant
8
+
9
+
10
+ <a name="getInterchangeClearingLevelDetails"></a>
11
+ # **getInterchangeClearingLevelDetails**
12
+ > ReportingV3InterchangeClearingLevelDetailsGet200Response getInterchangeClearingLevelDetails(startTime, endTime, opts)
13
+
14
+ Interchange Clearing Level data for an account or a merchant
15
+
16
+ Interchange Clearing Level data for an account or a merchant
17
+
18
+ ### Example
19
+ ```javascript
20
+ var CyberSource = require('CyberSource');
21
+
22
+ var apiInstance = new CyberSource.InterchangeClearingLevelDetailsApi();
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
+
28
+ var opts = {
29
+ 'organizationId': "organizationId_example" // String | Valid 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.getInterchangeClearingLevelDetails(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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
47
+ **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
48
+ **organizationId** | **String**| Valid Organization Id | [optional]
49
+
50
+ ### Return type
51
+
52
+ [**ReportingV3InterchangeClearingLevelDetailsGet200Response**](ReportingV3InterchangeClearingLevelDetailsGet200Response.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, application/xml
62
+
@@ -26,7 +26,7 @@ var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report St
26
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
27
 
28
28
  var opts = {
29
- 'organizationId': "organizationId_example", // String | Valid Cybersource Organization Id
29
+ 'organizationId': "organizationId_example", // String | Valid Organization Id
30
30
  'groupName': "groupName_example" // String | Valid CyberSource Group Name.
31
31
  };
32
32
 
@@ -46,7 +46,7 @@ Name | Type | Description | Notes
46
46
  ------------- | ------------- | ------------- | -------------
47
47
  **startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
48
48
  **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
49
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
49
+ **organizationId** | **String**| Valid Organization Id | [optional]
50
50
  **groupName** | **String**| Valid CyberSource Group Name. | [optional]
51
51
 
52
52
  ### Return type
@@ -26,7 +26,7 @@ var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report St
26
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
27
 
28
28
  var opts = {
29
- 'organizationId': "organizationId_example", // String | Valid Cybersource Organization Id
29
+ 'organizationId': "organizationId_example", // String | Valid Organization Id
30
30
  'rollUp': "rollUp_example", // String | Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant
31
31
  'breakdown': "breakdown_example", // String | Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant.
32
32
  'startDayOfWeek': 56 // Number | Optional - Start day of week to breakdown data for weeks in a month
@@ -48,7 +48,7 @@ Name | Type | Description | Notes
48
48
  ------------- | ------------- | ------------- | -------------
49
49
  **startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
50
50
  **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
51
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
51
+ **organizationId** | **String**| Valid Organization Id | [optional]
52
52
  **rollUp** | **String**| Conditional - RollUp for data for day/week/month. Required while getting breakdown data for a Merchant | [optional]
53
53
  **breakdown** | **String**| Conditional - Breakdown on account_rollup/all_merchant/selected_merchant. Required while getting breakdown data for a Merchant. | [optional]
54
54
  **startDayOfWeek** | **Number**| Optional - Start day of week to breakdown data for weeks in a month | [optional]
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **code** | **String** | Merchant-generated order reference or tracking number. It is recommended that you send a unique value for each transaction so that you can perform meaningful searches for the transaction. #### Used by **Authorization** Required field. #### PIN Debit Requests for PIN debit reversals need to use the same merchant reference number that was used in the transaction that is being reversed. Required field for all PIN Debit requests (purchase, credit, and reversal). #### FDC Nashville Global Certain circumstances can cause the processor to truncate this value to 15 or 17 characters for Level II and Level III processing, which can cause a discrepancy between the value you submit and the value included in some processor reports. | [optional]
7
+ **pausedRequestId** | **String** | Used to resume a transaction that was paused for an order modification rule to allow for payer authentication to complete. To resume and continue with the authorization/decision service flow, call the services and include the request id from the prior decision call. | [optional]
7
8
  **transactionId** | **String** | Identifier that you assign to the transaction. Normally generated by a client server to identify a unique API request. **Note** Use this field only if you want to support merchant-initiated reversal and void operations. #### Used by **Authorization, Authorization Reversal, Capture, Credit, and Void** Optional field. #### PIN Debit For a PIN debit reversal, your request must include a request ID or a merchant transaction identifier. Optional field for PIN debit purchase or credit requests. | [optional]
8
9
  **comments** | **String** | Comments | [optional]
9
10
  **partner** | [**Ptsv2paymentsClientReferenceInformationPartner**](Ptsv2paymentsClientReferenceInformationPartner.md) | | [optional]
@@ -26,7 +26,7 @@ var startTime = new Date("2013-10-20T19:20:30+01:00"); // Date | Valid report St
26
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.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd'T'HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z)
27
27
 
28
28
  var opts = {
29
- 'organizationId': "organizationId_example", // String | Valid Cybersource Organization Id
29
+ 'organizationId': "organizationId_example", // String | Valid Organization Id
30
30
  'paymentSubtype': "ALL", // String | Payment Subtypes. - **ALL**: All Payment Subtypes - **VI** : Visa - **MC** : Master Card - **AX** : American Express - **DI** : Discover - **DP** : Pinless Debit
31
31
  'viewBy': "requestDate", // String | View results by Request Date or Submission Date. - **requestDate** : Request Date - **submissionDate**: Submission Date
32
32
  'groupName': "groupName_example", // String | Valid CyberSource Group Name.User can define groups using CBAPI and Group Management Module in EBC2. Groups are collection of organizationIds
@@ -50,7 +50,7 @@ Name | Type | Description | Notes
50
50
  ------------- | ------------- | ------------- | -------------
51
51
  **startTime** | **Date**| Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
52
52
  **endTime** | **Date**| Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) |
53
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
53
+ **organizationId** | **String**| Valid Organization Id | [optional]
54
54
  **paymentSubtype** | **String**| Payment Subtypes. - **ALL**: All Payment Subtypes - **VI** : Visa - **MC** : Master Card - **AX** : American Express - **DI** : Discover - **DP** : Pinless Debit | [optional] [default to ALL]
55
55
  **viewBy** | **String**| View results by Request Date or Submission Date. - **requestDate** : Request Date - **submissionDate**: Submission Date | [optional] [default to requestDate]
56
56
  **groupName** | **String**| Valid CyberSource Group Name.User can define groups using CBAPI and Group Management Module in EBC2. Groups are collection of organizationIds | [optional]
@@ -27,7 +27,7 @@ var reportDefinitionName = "reportDefinitionName_example"; // String | Name of t
27
27
  var opts = {
28
28
  'subscriptionType': "subscriptionType_example", // String | The subscription type for which report definition is required. By default the type will be CUSTOM. Valid Values: - CLASSIC - CUSTOM - STANDARD
29
29
  'reportMimeType': "reportMimeType_example", // String | The format for which the report definition is required. By default the value will be CSV. Valid Values: - application/xml - text/csv
30
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
30
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
31
31
  };
32
32
 
33
33
  var callback = function(error, data, response) {
@@ -47,7 +47,7 @@ Name | Type | Description | Notes
47
47
  **reportDefinitionName** | **String**| Name of the Report definition to retrieve |
48
48
  **subscriptionType** | **String**| The subscription type for which report definition is required. By default the type will be CUSTOM. Valid Values: - CLASSIC - CUSTOM - STANDARD | [optional]
49
49
  **reportMimeType** | **String**| The format for which the report definition is required. By default the value will be CSV. Valid Values: - application/xml - text/csv | [optional]
50
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
50
+ **organizationId** | **String**| Valid Organization Id | [optional]
51
51
 
52
52
  ### Return type
53
53
 
@@ -78,7 +78,7 @@ var apiInstance = new CyberSource.ReportDefinitionsApi();
78
78
 
79
79
  var opts = {
80
80
  'subscriptionType': "subscriptionType_example", // String | Valid Values: - CLASSIC - CUSTOM - STANDARD
81
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
81
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
82
82
  };
83
83
 
84
84
  var callback = function(error, data, response) {
@@ -96,7 +96,7 @@ apiInstance.getResourceV2Info(opts, callback);
96
96
  Name | Type | Description | Notes
97
97
  ------------- | ------------- | ------------- | -------------
98
98
  **subscriptionType** | **String**| Valid Values: - CLASSIC - CUSTOM - STANDARD | [optional]
99
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
99
+ **organizationId** | **String**| Valid Organization Id | [optional]
100
100
 
101
101
  ### Return type
102
102
 
@@ -26,7 +26,7 @@ var reportDate = new Date("2013-10-20"); // Date | Valid date on which to downlo
26
26
  var reportName = "reportName_example"; // String | Name of the report to download
27
27
 
28
28
  var opts = {
29
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
29
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
30
30
  };
31
31
 
32
32
  var callback = function(error, data, response) {
@@ -45,7 +45,7 @@ Name | Type | Description | Notes
45
45
  ------------- | ------------- | ------------- | -------------
46
46
  **reportDate** | **Date**| Valid date on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** yyyy-mm-dd For reports that span multiple days, this value would be the end date of the report in the time zone of the report subscription. Example 1: If your report start date is 2020-03-06 and the end date is 2020-03-09, the reportDate passed in the query is 2020-03-09. Example 2: If your report runs from midnight to midnight on 2020-03-09, the reportDate passed in the query is 2020-03-10 |
47
47
  **reportName** | **String**| Name of the report to download |
48
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
48
+ **organizationId** | **String**| Valid Organization Id | [optional]
49
49
 
50
50
  ### Return type
51
51
 
@@ -28,7 +28,7 @@ var apiInstance = new CyberSource.ReportSubscriptionsApi();
28
28
  var predefinedSubscriptionRequestBean = new CyberSource.PredefinedSubscriptionRequestBean(); // PredefinedSubscriptionRequestBean | Report subscription request payload
29
29
 
30
30
  var opts = {
31
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
31
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
32
32
  };
33
33
 
34
34
  var callback = function(error, data, response) {
@@ -46,7 +46,7 @@ apiInstance.createStandardOrClassicSubscription(predefinedSubscriptionRequestBea
46
46
  Name | Type | Description | Notes
47
47
  ------------- | ------------- | ------------- | -------------
48
48
  **predefinedSubscriptionRequestBean** | [**PredefinedSubscriptionRequestBean**](PredefinedSubscriptionRequestBean.md)| Report subscription request payload |
49
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
49
+ **organizationId** | **String**| Valid Organization Id | [optional]
50
50
 
51
51
  ### Return type
52
52
 
@@ -78,7 +78,7 @@ var apiInstance = new CyberSource.ReportSubscriptionsApi();
78
78
  var createReportSubscriptionRequest = new CyberSource.CreateReportSubscriptionRequest(); // CreateReportSubscriptionRequest | Report subscription request payload
79
79
 
80
80
  var opts = {
81
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
81
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
82
82
  };
83
83
 
84
84
  var callback = function(error, data, response) {
@@ -96,7 +96,7 @@ apiInstance.createSubscription(createReportSubscriptionRequest, opts, callback);
96
96
  Name | Type | Description | Notes
97
97
  ------------- | ------------- | ------------- | -------------
98
98
  **createReportSubscriptionRequest** | [**CreateReportSubscriptionRequest**](CreateReportSubscriptionRequest.md)| Report subscription request payload |
99
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
99
+ **organizationId** | **String**| Valid Organization Id | [optional]
100
100
 
101
101
  ### Return type
102
102
 
@@ -128,7 +128,7 @@ var apiInstance = new CyberSource.ReportSubscriptionsApi();
128
128
  var reportName = "reportName_example"; // String | Name of the Report to Delete
129
129
 
130
130
  var opts = {
131
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
131
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
132
132
  };
133
133
 
134
134
  var callback = function(error, data, response) {
@@ -146,7 +146,7 @@ apiInstance.deleteSubscription(reportName, opts, callback);
146
146
  Name | Type | Description | Notes
147
147
  ------------- | ------------- | ------------- | -------------
148
148
  **reportName** | **String**| Name of the Report to Delete |
149
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
149
+ **organizationId** | **String**| Valid Organization Id | [optional]
150
150
 
151
151
  ### Return type
152
152
 
@@ -176,7 +176,7 @@ var CyberSource = require('CyberSource');
176
176
  var apiInstance = new CyberSource.ReportSubscriptionsApi();
177
177
 
178
178
  var opts = {
179
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
179
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
180
180
  };
181
181
 
182
182
  var callback = function(error, data, response) {
@@ -193,7 +193,7 @@ apiInstance.getAllSubscriptions(opts, callback);
193
193
 
194
194
  Name | Type | Description | Notes
195
195
  ------------- | ------------- | ------------- | -------------
196
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
196
+ **organizationId** | **String**| Valid Organization Id | [optional]
197
197
 
198
198
  ### Return type
199
199
 
@@ -225,7 +225,7 @@ var apiInstance = new CyberSource.ReportSubscriptionsApi();
225
225
  var reportName = "reportName_example"; // String | Name of the Report to Retrieve
226
226
 
227
227
  var opts = {
228
- 'organizationId': "organizationId_example" // String | Valid Cybersource Organization Id
228
+ 'organizationId': "organizationId_example" // String | Valid Organization Id
229
229
  };
230
230
 
231
231
  var callback = function(error, data, response) {
@@ -243,7 +243,7 @@ apiInstance.getSubscription(reportName, opts, callback);
243
243
  Name | Type | Description | Notes
244
244
  ------------- | ------------- | ------------- | -------------
245
245
  **reportName** | **String**| Name of the Report to Retrieve |
246
- **organizationId** | **String**| Valid Cybersource Organization Id | [optional]
246
+ **organizationId** | **String**| Valid Organization Id | [optional]
247
247
 
248
248
  ### Return type
249
249
 
@@ -0,0 +1,11 @@
1
+ # CyberSource.ReportingV3ChargebackDetailsGet200Response
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **organizationId** | **String** | Organization Id | [optional]
7
+ **startTime** | **Date** | Report Start Date (ISO 8601 Extended) | [optional]
8
+ **endTime** | **Date** | Report Start Date (ISO 8601 Extended) | [optional]
9
+ **chargebackDetails** | [**[ReportingV3ChargebackDetailsGet200ResponseChargebackDetails]**](ReportingV3ChargebackDetailsGet200ResponseChargebackDetails.md) | List of Chargeback Details list. | [optional]
10
+
11
+
@@ -0,0 +1,29 @@
1
+ # CyberSource.ReportingV3ChargebackDetailsGet200ResponseChargebackDetails
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **processorMerchantId** | **String** | Processor Merchant Id | [optional]
7
+ **merchantName** | **String** | Merchant Name | [optional]
8
+ **transactionReferenceNumber** | **String** | Transaction Reference Number | [optional]
9
+ **merchantReferenceNumber** | **String** | Merchant Reference Number | [optional]
10
+ **natureOfDispute** | **String** | Nature of Dispute | [optional]
11
+ **alertType** | **String** | Chargeback Alert Type | [optional]
12
+ **amount** | **String** | Chargeback Amount | [optional]
13
+ **sign** | **String** | Chargeback Sign | [optional]
14
+ **action** | **String** | Chargeback Action | [optional]
15
+ **cardType** | **String** | Card Type | [optional]
16
+ **originalSettlementTime** | **Date** | Original Settlement Date | [optional]
17
+ **trackingNumber** | **String** | Tracking Number | [optional]
18
+ **currencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
19
+ **requestId** | **String** | Request Id | [optional]
20
+ **responseDueTime** | **Date** | Response Due Date | [optional]
21
+ **time** | **Date** | Chargeback Date | [optional]
22
+ **actionDescription** | **String** | Chargeback Action Description | [optional]
23
+ **customerId** | **String** | Customer Id | [optional]
24
+ **reasonCode** | **String** | Chargeback Reason Code | [optional]
25
+ **representmentCPTime** | **Date** | Representment CP Date | [optional]
26
+ **applications** | **String** | ICS Request Applications | [optional]
27
+ **eventRequestedTime** | **Date** | Event Request Date | [optional]
28
+
29
+
@@ -0,0 +1,11 @@
1
+ # CyberSource.ReportingV3ChargebackSummariesGet200Response
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **organizationId** | **String** | Organization Id | [optional]
7
+ **startTime** | **Date** | Report Start Date | [optional]
8
+ **endTime** | **String** | Report Start Date | [optional]
9
+ **chargebackSummaries** | [**[ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries]**](ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries.md) | List of Summary values | [optional]
10
+
11
+
@@ -0,0 +1,10 @@
1
+ # CyberSource.ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **count** | **Number** | Chargeback summary list count | [optional]
7
+ **time** | **Date** | Summary Date | [optional]
8
+ **accountId** | **String** | Account Id | [optional]
9
+
10
+
@@ -0,0 +1,10 @@
1
+ # CyberSource.ReportingV3InterchangeClearingLevelDetailsGet200Response
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **startDate** | **Date** | Valid report Start Date 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:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZZ | [optional]
7
+ **endDate** | **Date** | Valid report Start Date in **ISO 8601 format**. | [optional]
8
+ **interchangeClearingLevelDetails** | [**[ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails]**](ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails.md) | List of InterchangeClearingLevelDetail | [optional]
9
+
10
+
@@ -0,0 +1,58 @@
1
+ # CyberSource.ReportingV3InterchangeClearingLevelDetailsGet200ResponseInterchangeClearingLevelDetails
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **requestId** | **String** | | [optional]
7
+ **organizationId** | **String** | | [optional]
8
+ **accountId** | **String** | | [optional]
9
+ **processorMerchantId** | **String** | | [optional]
10
+ **transactionReferenceNumber** | **String** | | [optional]
11
+ **merchantReferenceNumber** | **String** | | [optional]
12
+ **accountSuffix** | **String** | | [optional]
13
+ **paymentSubType** | **String** | | [optional]
14
+ **paymentSubTypeDescription** | **String** | | [optional]
15
+ **transactionTime** | **Date** | | [optional]
16
+ **processedTime** | **Date** | | [optional]
17
+ **transactionType** | **String** | | [optional]
18
+ **amount** | **String** | | [optional]
19
+ **currencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
20
+ **priceType** | **String** | | [optional]
21
+ **priceAmountOne** | **String** | | [optional]
22
+ **priceAmountTwo** | **String** | | [optional]
23
+ **reClass** | **String** | | [optional]
24
+ **settlementTime** | **Date** | | [optional]
25
+ **settlementProcessor** | **String** | | [optional]
26
+ **merchantBatchNumber** | **String** | | [optional]
27
+ **clearedLevel** | **String** | | [optional]
28
+ **billbackReasonCode** | **String** | | [optional]
29
+ **billbackReasonDescription** | **String** | | [optional]
30
+ **merchantPricedLevel** | **String** | | [optional]
31
+ **discountRate** | **String** | | [optional]
32
+ **discountAmount** | **String** | | [optional]
33
+ **clearingRateAmountOne** | **String** | | [optional]
34
+ **clearingRateAmountTwo** | **String** | | [optional]
35
+ **clearingRateAmountThree** | **String** | | [optional]
36
+ **clearingRateCurrencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
37
+ **interchangeAmount** | **String** | | [optional]
38
+ **billbackAmount** | **String** | | [optional]
39
+ **settlementAmount** | **String** | | [optional]
40
+ **settlementCurrencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
41
+ **conversionRate** | **String** | | [optional]
42
+ **deltaCost** | **String** | | [optional]
43
+ **surchargeAmount** | **String** | | [optional]
44
+ **percentRateCharged** | **String** | | [optional]
45
+ **perTransactionCharged** | **String** | | [optional]
46
+ **downgradeReasonCode** | **String** | | [optional]
47
+ **processTime** | **Date** | | [optional]
48
+ **authCode** | **String** | | [optional]
49
+ **batchTime** | **Date** | | [optional]
50
+ **processorBatchNumber** | **String** | | [optional]
51
+ **cardIndicator** | **String** | | [optional]
52
+ **minimumUnit** | **Number** | | [optional]
53
+ **minimumUnitCurrencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
54
+ **creditDeltaIndicator** | **String** | | [optional]
55
+ **feeCategory** | **String** | | [optional]
56
+ **applicationName** | **String** | | [optional]
57
+
58
+
@@ -0,0 +1,11 @@
1
+ # CyberSource.ReportingV3RetrievalDetailsGet200Response
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **organizationId** | **String** | Organization Id | [optional]
7
+ **startTime** | **Date** | Report Start Date (ISO 8601 Extended) | [optional]
8
+ **endTime** | **Date** | Report Start Date (ISO 8601 Extended) | [optional]
9
+ **retrievalDetails** | [**[ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails]**](ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails.md) | List of Retrieval Details list. | [optional]
10
+
11
+
@@ -0,0 +1,29 @@
1
+ # CyberSource.ReportingV3RetrievalDetailsGet200ResponseRetrievalDetails
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **processorMerchantId** | **String** | Processor Merchant Id | [optional]
7
+ **merchantName** | **String** | Merchant Name | [optional]
8
+ **transactionReferenceNumber** | **String** | Transaction Reference Number | [optional]
9
+ **merchantReferenceNumber** | **String** | Merchant Reference Number | [optional]
10
+ **natureOfDispute** | **String** | Nature of Dispute | [optional]
11
+ **alertType** | **String** | Retrieval Alert Type | [optional]
12
+ **amount** | **String** | Retrieval Amount | [optional]
13
+ **sign** | **String** | Retrieval Sign | [optional]
14
+ **action** | **String** | Retrieval Action | [optional]
15
+ **cardType** | **String** | Card Type | [optional]
16
+ **originalSettlementTime** | **Date** | Original Settlement Date | [optional]
17
+ **trackingNumber** | **String** | Tracking Number | [optional]
18
+ **currencyCode** | **String** | Valid ISO 4217 ALPHA-3 currency code | [optional]
19
+ **requestId** | **String** | Request Id | [optional]
20
+ **responseDueTime** | **Date** | Response Due Date | [optional]
21
+ **time** | **Date** | Retrieval Date | [optional]
22
+ **actionDescription** | **String** | Retrieval Action Description | [optional]
23
+ **customerId** | **String** | Customer Id | [optional]
24
+ **reasonCode** | **String** | Retrieval Reason Code | [optional]
25
+ **representmentCPTime** | **Date** | Representment CP Date | [optional]
26
+ **applications** | **String** | ICS Request Applications | [optional]
27
+ **eventRequestedTime** | **Date** | Event Request Date | [optional]
28
+
29
+
@@ -0,0 +1,11 @@
1
+ # CyberSource.ReportingV3RetrievalSummariesGet200Response
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **organizationId** | **String** | Organization Id | [optional]
7
+ **startTime** | **Date** | Report Start Date | [optional]
8
+ **endTime** | **String** | Report Start Date | [optional]
9
+ **retrievalSummaries** | [**[ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries]**](ReportingV3ChargebackSummariesGet200ResponseChargebackSummaries.md) | List of Summary values | [optional]
10
+
11
+