Skip to content

Commit b6dbb18

Browse files
Merge pull request #115 from CyberSource/aug_release
aug release
2 parents c678d1f + 907e26e commit b6dbb18

File tree

88 files changed

+7428
-149
lines changed

Some content is hidden

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

88 files changed

+7428
-149
lines changed

docs/BillingAgreementsApi.md

Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
# CyberSource.BillingAgreementsApi
2+
3+
All URIs are relative to *https://apitest.cybersource.com*
4+
5+
Method | HTTP request | Description
6+
------------- | ------------- | -------------
7+
[**billingAgreementsDeRegistration**](BillingAgreementsApi.md#billingAgreementsDeRegistration) | **PATCH** /pts/v2/billing-agreements/{id} | Standing Instruction Cancellation or Modification
8+
[**billingAgreementsIntimation**](BillingAgreementsApi.md#billingAgreementsIntimation) | **POST** /pts/v2/billing-agreements/{id}/intimations | Standing Instruction intimation
9+
[**billingAgreementsRegistration**](BillingAgreementsApi.md#billingAgreementsRegistration) | **POST** /pts/v2/billing-agreements | Standing Instruction completion registration
10+
11+
12+
<a name="billingAgreementsDeRegistration"></a>
13+
# **billingAgreementsDeRegistration**
14+
> PtsV2CreditsPost201Response1 billingAgreementsDeRegistration(modifyBillingAgreement, id)
15+
16+
Standing Instruction Cancellation or Modification
17+
18+
Standing Instruction with or without Token
19+
20+
### Example
21+
```javascript
22+
var CyberSource = require('CyberSource');
23+
24+
var apiInstance = new CyberSource.BillingAgreementsApi();
25+
26+
var modifyBillingAgreement = new CyberSource.ModifyBillingAgreement(); // ModifyBillingAgreement |
27+
28+
var id = "id_example"; // String | ID for de-registration or cancellation of Billing Agreement
29+
30+
31+
var callback = function(error, data, response) {
32+
if (error) {
33+
console.error(error);
34+
} else {
35+
console.log('API called successfully. Returned data: ' + data);
36+
}
37+
};
38+
apiInstance.billingAgreementsDeRegistration(modifyBillingAgreement, id, callback);
39+
```
40+
41+
### Parameters
42+
43+
Name | Type | Description | Notes
44+
------------- | ------------- | ------------- | -------------
45+
**modifyBillingAgreement** | [**ModifyBillingAgreement**](ModifyBillingAgreement.md)| |
46+
**id** | **String**| ID for de-registration or cancellation of Billing Agreement |
47+
48+
### Return type
49+
50+
[**PtsV2CreditsPost201Response1**](PtsV2CreditsPost201Response1.md)
51+
52+
### Authorization
53+
54+
No authorization required
55+
56+
### HTTP request headers
57+
58+
- **Content-Type**: application/json;charset=utf-8
59+
- **Accept**: application/hal+json;charset=utf-8
60+
61+
<a name="billingAgreementsIntimation"></a>
62+
# **billingAgreementsIntimation**
63+
> PtsV2CreditsPost201Response1 billingAgreementsIntimation(intimateBillingAgreement, id)
64+
65+
Standing Instruction intimation
66+
67+
Standing Instruction with or without Token.
68+
69+
### Example
70+
```javascript
71+
var CyberSource = require('CyberSource');
72+
73+
var apiInstance = new CyberSource.BillingAgreementsApi();
74+
75+
var intimateBillingAgreement = new CyberSource.IntimateBillingAgreement(); // IntimateBillingAgreement |
76+
77+
var id = "id_example"; // String | ID for intimation of Billing Agreement
78+
79+
80+
var callback = function(error, data, response) {
81+
if (error) {
82+
console.error(error);
83+
} else {
84+
console.log('API called successfully. Returned data: ' + data);
85+
}
86+
};
87+
apiInstance.billingAgreementsIntimation(intimateBillingAgreement, id, callback);
88+
```
89+
90+
### Parameters
91+
92+
Name | Type | Description | Notes
93+
------------- | ------------- | ------------- | -------------
94+
**intimateBillingAgreement** | [**IntimateBillingAgreement**](IntimateBillingAgreement.md)| |
95+
**id** | **String**| ID for intimation of Billing Agreement |
96+
97+
### Return type
98+
99+
[**PtsV2CreditsPost201Response1**](PtsV2CreditsPost201Response1.md)
100+
101+
### Authorization
102+
103+
No authorization required
104+
105+
### HTTP request headers
106+
107+
- **Content-Type**: application/json;charset=utf-8
108+
- **Accept**: application/hal+json;charset=utf-8
109+
110+
<a name="billingAgreementsRegistration"></a>
111+
# **billingAgreementsRegistration**
112+
> PtsV2CreditsPost201Response1 billingAgreementsRegistration(createBillingAgreement)
113+
114+
Standing Instruction completion registration
115+
116+
Standing Instruction with or without Token. Transaction amount in case First payment is coming along with registration. Only 2 decimal places allowed
117+
118+
### Example
119+
```javascript
120+
var CyberSource = require('CyberSource');
121+
122+
var apiInstance = new CyberSource.BillingAgreementsApi();
123+
124+
var createBillingAgreement = new CyberSource.CreateBillingAgreement(); // CreateBillingAgreement |
125+
126+
127+
var callback = function(error, data, response) {
128+
if (error) {
129+
console.error(error);
130+
} else {
131+
console.log('API called successfully. Returned data: ' + data);
132+
}
133+
};
134+
apiInstance.billingAgreementsRegistration(createBillingAgreement, callback);
135+
```
136+
137+
### Parameters
138+
139+
Name | Type | Description | Notes
140+
------------- | ------------- | ------------- | -------------
141+
**createBillingAgreement** | [**CreateBillingAgreement**](CreateBillingAgreement.md)| |
142+
143+
### Return type
144+
145+
[**PtsV2CreditsPost201Response1**](PtsV2CreditsPost201Response1.md)
146+
147+
### Authorization
148+
149+
No authorization required
150+
151+
### HTTP request headers
152+
153+
- **Content-Type**: application/json;charset=utf-8
154+
- **Accept**: application/hal+json;charset=utf-8
155+

docs/CreateBillingAgreement.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CyberSource.CreateBillingAgreement
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**clientReferenceInformation** | [**Ptsv2paymentsClientReferenceInformation**](Ptsv2paymentsClientReferenceInformation.md) | | [optional]
7+
**aggregatorInformation** | [**Ptsv2billingagreementsAggregatorInformation**](Ptsv2billingagreementsAggregatorInformation.md) | | [optional]
8+
**consumerAuthenticationInformation** | [**Ptsv2billingagreementsConsumerAuthenticationInformation**](Ptsv2billingagreementsConsumerAuthenticationInformation.md) | | [optional]
9+
**deviceInformation** | [**Ptsv2billingagreementsDeviceInformation**](Ptsv2billingagreementsDeviceInformation.md) | | [optional]
10+
**installmentInformation** | [**Ptsv2billingagreementsInstallmentInformation**](Ptsv2billingagreementsInstallmentInformation.md) | | [optional]
11+
**merchantInformation** | [**Ptsv2billingagreementsMerchantInformation**](Ptsv2billingagreementsMerchantInformation.md) | | [optional]
12+
**orderInformation** | [**Ptsv2billingagreementsOrderInformation**](Ptsv2billingagreementsOrderInformation.md) | | [optional]
13+
**paymentInformation** | [**Ptsv2billingagreementsPaymentInformation**](Ptsv2billingagreementsPaymentInformation.md) | | [optional]
14+
**processingInformation** | [**Ptsv2billingagreementsProcessingInformation**](Ptsv2billingagreementsProcessingInformation.md) | | [optional]
15+
16+

docs/CreateBundledDecisionManagerCaseRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ Name | Type | Description | Notes
1818
**recurringPaymentInformation** | [**Ptsv2paymentsRecurringPaymentInformation**](Ptsv2paymentsRecurringPaymentInformation.md) | | [optional]
1919
**consumerAuthenticationInformation** | [**Riskv1decisionsConsumerAuthenticationInformation**](Riskv1decisionsConsumerAuthenticationInformation.md) | | [optional]
2020
**watchlistScreeningInformation** | [**Ptsv2paymentsWatchlistScreeningInformation**](Ptsv2paymentsWatchlistScreeningInformation.md) | | [optional]
21+
**tokenInformation** | [**Riskv1decisionsTokenInformation**](Riskv1decisionsTokenInformation.md) | | [optional]
2122

2223

docs/IntimateBillingAgreement.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CyberSource.IntimateBillingAgreement
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**clientReferenceInformation** | [**Ptsv2paymentsClientReferenceInformation**](Ptsv2paymentsClientReferenceInformation.md) | | [optional]
7+
**installmentInformation** | [**Ptsv2billingagreementsInstallmentInformation**](Ptsv2billingagreementsInstallmentInformation.md) | | [optional]
8+
**merchantInformation** | [**Ptsv2billingagreementsMerchantInformation**](Ptsv2billingagreementsMerchantInformation.md) | | [optional]
9+
**orderInformation** | [**Ptsv2billingagreementsOrderInformation**](Ptsv2billingagreementsOrderInformation.md) | | [optional]
10+
**paymentInformation** | [**Ptsv2billingagreementsPaymentInformation**](Ptsv2billingagreementsPaymentInformation.md) | | [optional]
11+
12+

docs/InvoiceSettingsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ No authorization required
4646
### HTTP request headers
4747

4848
- **Content-Type**: application/json;charset=utf-8
49-
- **Accept**: application/json;charset=utf-8
49+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
5050

5151
<a name="updateInvoiceSettings"></a>
5252
# **updateInvoiceSettings**
@@ -92,5 +92,5 @@ No authorization required
9292
### HTTP request headers
9393

9494
- **Content-Type**: application/json;charset=utf-8
95-
- **Accept**: application/json;charset=utf-8
95+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
9696

docs/InvoicesApi.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ No authorization required
5656
### HTTP request headers
5757

5858
- **Content-Type**: application/json;charset=utf-8
59-
- **Accept**: application/json;charset=utf-8
59+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
6060

6161
<a name="getAllInvoices"></a>
6262
# **getAllInvoices**
@@ -109,7 +109,7 @@ No authorization required
109109
### HTTP request headers
110110

111111
- **Content-Type**: application/json;charset=utf-8
112-
- **Accept**: application/json;charset=utf-8
112+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
113113

114114
<a name="getInvoice"></a>
115115
# **getInvoice**
@@ -155,7 +155,7 @@ No authorization required
155155
### HTTP request headers
156156

157157
- **Content-Type**: application/json;charset=utf-8
158-
- **Accept**: application/json;charset=utf-8
158+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
159159

160160
<a name="performCancelAction"></a>
161161
# **performCancelAction**
@@ -201,7 +201,7 @@ No authorization required
201201
### HTTP request headers
202202

203203
- **Content-Type**: application/json;charset=utf-8
204-
- **Accept**: application/json;charset=utf-8
204+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
205205

206206
<a name="performSendAction"></a>
207207
# **performSendAction**
@@ -247,7 +247,7 @@ No authorization required
247247
### HTTP request headers
248248

249249
- **Content-Type**: application/json;charset=utf-8
250-
- **Accept**: application/json;charset=utf-8
250+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
251251

252252
<a name="updateInvoice"></a>
253253
# **updateInvoice**
@@ -296,5 +296,5 @@ No authorization required
296296
### HTTP request headers
297297

298298
- **Content-Type**: application/json;charset=utf-8
299-
- **Accept**: application/json;charset=utf-8
299+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
300300

docs/ModifyBillingAgreement.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CyberSource.ModifyBillingAgreement
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**clientReferenceInformation** | [**Ptsv2paymentsClientReferenceInformation**](Ptsv2paymentsClientReferenceInformation.md) | | [optional]
7+
**aggregatorInformation** | [**Ptsv2billingagreementsAggregatorInformation**](Ptsv2billingagreementsAggregatorInformation.md) | | [optional]
8+
**consumerAuthenticationInformation** | [**Ptsv2billingagreementsConsumerAuthenticationInformation**](Ptsv2billingagreementsConsumerAuthenticationInformation.md) | | [optional]
9+
**deviceInformation** | [**Ptsv2billingagreementsDeviceInformation**](Ptsv2billingagreementsDeviceInformation.md) | | [optional]
10+
**installmentInformation** | [**Ptsv2billingagreementsInstallmentInformation**](Ptsv2billingagreementsInstallmentInformation.md) | | [optional]
11+
**merchantInformation** | [**Ptsv2billingagreementsMerchantInformation**](Ptsv2billingagreementsMerchantInformation.md) | | [optional]
12+
**orderInformation** | [**Ptsv2billingagreementsOrderInformation**](Ptsv2billingagreementsOrderInformation.md) | | [optional]
13+
**paymentInformation** | [**Ptsv2billingagreementsPaymentInformation**](Ptsv2billingagreementsPaymentInformation.md) | | [optional]
14+
**processingInformation** | [**Ptsv2billingagreementsProcessingInformation**](Ptsv2billingagreementsProcessingInformation.md) | | [optional]
15+
16+

docs/PlansApi.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ No authorization required
5858
### HTTP request headers
5959

6060
- **Content-Type**: application/json;charset=utf-8
61-
- **Accept**: application/json;charset=utf-8
61+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
6262

6363
<a name="createPlan"></a>
6464
# **createPlan**
@@ -104,7 +104,7 @@ No authorization required
104104
### HTTP request headers
105105

106106
- **Content-Type**: application/json;charset=utf-8
107-
- **Accept**: application/json;charset=utf-8
107+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
108108

109109
<a name="deactivatePlan"></a>
110110
# **deactivatePlan**
@@ -150,7 +150,7 @@ No authorization required
150150
### HTTP request headers
151151

152152
- **Content-Type**: application/json;charset=utf-8
153-
- **Accept**: application/json;charset=utf-8
153+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
154154

155155
<a name="deletePlan"></a>
156156
# **deletePlan**
@@ -196,7 +196,7 @@ No authorization required
196196
### HTTP request headers
197197

198198
- **Content-Type**: application/json;charset=utf-8
199-
- **Accept**: application/json;charset=utf-8
199+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
200200

201201
<a name="getPlan"></a>
202202
# **getPlan**
@@ -242,7 +242,7 @@ No authorization required
242242
### HTTP request headers
243243

244244
- **Content-Type**: application/json;charset=utf-8
245-
- **Accept**: application/json;charset=utf-8
245+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
246246

247247
<a name="getPlanCode"></a>
248248
# **getPlanCode**
@@ -282,7 +282,7 @@ No authorization required
282282
### HTTP request headers
283283

284284
- **Content-Type**: application/json;charset=utf-8
285-
- **Accept**: application/json;charset=utf-8
285+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
286286

287287
<a name="getPlans"></a>
288288
# **getPlans**
@@ -337,7 +337,7 @@ No authorization required
337337
### HTTP request headers
338338

339339
- **Content-Type**: application/json;charset=utf-8
340-
- **Accept**: application/json;charset=utf-8
340+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
341341

342342
<a name="updatePlan"></a>
343343
# **updatePlan**
@@ -386,5 +386,5 @@ No authorization required
386386
### HTTP request headers
387387

388388
- **Content-Type**: application/json;charset=utf-8
389-
- **Accept**: application/json;charset=utf-8
389+
- **Accept**: application/json, application/hal+json, application/json;charset=utf-8, application/hal+json;charset=utf-8
390390

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# CyberSource.PtsV2CreditsPost201Response1
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **String** | An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response. | [optional]
7+
**submitTimeUtc** | **String** | Time of request in UTC. Format: &#x60;YYYY-MM-DDThh:mm:ssZ&#x60; **Example** &#x60;2016-08-11T22:47:57Z&#x60; equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The &#x60;T&#x60; separates the date and the time. The &#x60;Z&#x60; indicates UTC. Returned by Cybersource for all services. | [optional]
8+
**status** | **String** | The status of the submitted transaction. | [optional]
9+
**processorInformation** | [**PtsV2CreditsPost201Response1ProcessorInformation**](PtsV2CreditsPost201Response1ProcessorInformation.md) | | [optional]
10+
**installmentInformation** | [**PtsV2CreditsPost201Response1InstallmentInformation**](PtsV2CreditsPost201Response1InstallmentInformation.md) | | [optional]
11+
12+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CyberSource.PtsV2CreditsPost201Response1InstallmentInformation
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**identifier** | **String** | Identifier | [optional]
7+
8+

0 commit comments

Comments
 (0)