Skip to content

Commit 3b25e84

Browse files
committed
june spec changes
1 parent 0d83963 commit 3b25e84

24 files changed

+644
-168
lines changed

docs/PlansApi.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Method | HTTP request | Description
1616

1717
<a name="activatePlan"></a>
1818
# **activatePlan**
19-
> InlineResponse2004 activatePlan(id, opts)
19+
> InlineResponse2004 activatePlan(id)
2020
2121
Activate a Plan
2222

@@ -30,9 +30,6 @@ var apiInstance = new CyberSource.PlansApi();
3030

3131
var id = "id_example"; // String | Plan Id
3232

33-
var opts = {
34-
'activatePlanRequest': null // Object |
35-
};
3633

3734
var callback = function(error, data, response) {
3835
if (error) {
@@ -41,15 +38,14 @@ var callback = function(error, data, response) {
4138
console.log('API called successfully. Returned data: ' + data);
4239
}
4340
};
44-
apiInstance.activatePlan(id, opts, callback);
41+
apiInstance.activatePlan(id, callback);
4542
```
4643

4744
### Parameters
4845

4946
Name | Type | Description | Notes
5047
------------- | ------------- | ------------- | -------------
5148
**id** | **String**| Plan Id |
52-
**activatePlanRequest** | **Object**| | [optional]
5349

5450
### Return type
5551

@@ -112,7 +108,7 @@ No authorization required
112108

113109
<a name="deactivatePlan"></a>
114110
# **deactivatePlan**
115-
> InlineResponse2004 deactivatePlan(id, opts)
111+
> InlineResponse2004 deactivatePlan(id)
116112
117113
Deactivate a Plan
118114

@@ -126,9 +122,6 @@ var apiInstance = new CyberSource.PlansApi();
126122

127123
var id = "id_example"; // String | Plan Id
128124

129-
var opts = {
130-
'deactivatePlanRequest': null // Object |
131-
};
132125

133126
var callback = function(error, data, response) {
134127
if (error) {
@@ -137,15 +130,14 @@ var callback = function(error, data, response) {
137130
console.log('API called successfully. Returned data: ' + data);
138131
}
139132
};
140-
apiInstance.deactivatePlan(id, opts, callback);
133+
apiInstance.deactivatePlan(id, callback);
141134
```
142135

143136
### Parameters
144137

145138
Name | Type | Description | Notes
146139
------------- | ------------- | ------------- | -------------
147140
**id** | **String**| Plan Id |
148-
**deactivatePlanRequest** | **Object**| | [optional]
149141

150142
### Return type
151143

docs/Ptsv2paymentsRecipientInformation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ Name | Type | Description | Notes
77
**lastName** | **String** | Recipient’s last name. This field is a _passthrough_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the &#x60;recipient_lastname&#x60; field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
88
**middleName** | **String** | Recipient’s middle name. This field is a _passthrough_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the &#x60;recipient_middlename&#x60; field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
99
**postalCode** | **String** | Partial postal code for the recipient’s address. For example, if the postal code is **NN5 7SG**, the value for this field should be the first part of the postal code: **NN5**. This field is a _pass-through_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the &#x60;recipient_postal_code&#x60; field description in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
10+
**dateOfBirth** | **String** | Recipient’s date of birth. **Format**: &#x60;YYYYMMDD&#x60;. This field is a &#x60;pass-through&#x60;, which means that CyberSource ensures that the value is eight numeric characters but otherwise does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For more details, see &#x60;recipient_date_of_birth&#x60; field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
1011

1112

docs/SubscriptionsApi.md

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Method | HTTP request | Description
1616

1717
<a name="activateSubscription"></a>
1818
# **activateSubscription**
19-
> InlineResponse2009 activateSubscription(id, opts)
19+
> InlineResponse2009 activateSubscription(id)
2020
2121
Activate a Subscription
2222

@@ -30,9 +30,6 @@ var apiInstance = new CyberSource.SubscriptionsApi();
3030

3131
var id = "id_example"; // String | Subscription Id
3232

33-
var opts = {
34-
'activateSubscriptionRequest': null // Object |
35-
};
3633

3734
var callback = function(error, data, response) {
3835
if (error) {
@@ -41,15 +38,14 @@ var callback = function(error, data, response) {
4138
console.log('API called successfully. Returned data: ' + data);
4239
}
4340
};
44-
apiInstance.activateSubscription(id, opts, callback);
41+
apiInstance.activateSubscription(id, callback);
4542
```
4643

4744
### Parameters
4845

4946
Name | Type | Description | Notes
5047
------------- | ------------- | ------------- | -------------
5148
**id** | **String**| Subscription Id |
52-
**activateSubscriptionRequest** | **Object**| | [optional]
5349

5450
### Return type
5551

@@ -66,7 +62,7 @@ No authorization required
6662

6763
<a name="cancelSubscription"></a>
6864
# **cancelSubscription**
69-
> InlineResponse202 cancelSubscription(id, opts)
65+
> InlineResponse202 cancelSubscription(id)
7066
7167
Cancel a Subscription
7268

@@ -80,9 +76,6 @@ var apiInstance = new CyberSource.SubscriptionsApi();
8076

8177
var id = "id_example"; // String | Subscription Id
8278

83-
var opts = {
84-
'cancelSubscriptionRequest': null // Object |
85-
};
8679

8780
var callback = function(error, data, response) {
8881
if (error) {
@@ -91,15 +84,14 @@ var callback = function(error, data, response) {
9184
console.log('API called successfully. Returned data: ' + data);
9285
}
9386
};
94-
apiInstance.cancelSubscription(id, opts, callback);
87+
apiInstance.cancelSubscription(id, callback);
9588
```
9689

9790
### Parameters
9891

9992
Name | Type | Description | Notes
10093
------------- | ------------- | ------------- | -------------
10194
**id** | **String**| Subscription Id |
102-
**cancelSubscriptionRequest** | **Object**| | [optional]
10395

10496
### Return type
10597

@@ -301,7 +293,7 @@ No authorization required
301293

302294
<a name="suspendSubscription"></a>
303295
# **suspendSubscription**
304-
> InlineResponse2021 suspendSubscription(id, opts)
296+
> InlineResponse2021 suspendSubscription(id)
305297
306298
Suspend a Subscription
307299

@@ -315,9 +307,6 @@ var apiInstance = new CyberSource.SubscriptionsApi();
315307

316308
var id = "id_example"; // String | Subscription Id
317309

318-
var opts = {
319-
'suspendSubscriptionRequest': null // Object |
320-
};
321310

322311
var callback = function(error, data, response) {
323312
if (error) {
@@ -326,15 +315,14 @@ var callback = function(error, data, response) {
326315
console.log('API called successfully. Returned data: ' + data);
327316
}
328317
};
329-
apiInstance.suspendSubscription(id, opts, callback);
318+
apiInstance.suspendSubscription(id, callback);
330319
```
331320

332321
### Parameters
333322

334323
Name | Type | Description | Notes
335324
------------- | ------------- | ------------- | -------------
336325
**id** | **String**| Subscription Id |
337-
**suspendSubscriptionRequest** | **Object**| | [optional]
338326

339327
### Return type
340328

docs/TssV2TransactionsGet200Response.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**reconciliationId** | **String** | Reference number for the transaction. Depending on how your Cybersource account is configured, this value could either be provided in the API request or generated by CyberSource. The actual value used in the request to the processor is provided back to you by Cybersource in the response. | [optional]
99
**merchantId** | **String** | Your CyberSource merchant ID. | [optional]
1010
**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]
11+
**status** | **String** | The status of the submitted transaction. | [optional]
1112
**applicationInformation** | [**TssV2TransactionsGet200ResponseApplicationInformation**](TssV2TransactionsGet200ResponseApplicationInformation.md) | | [optional]
1213
**buyerInformation** | [**TssV2TransactionsGet200ResponseBuyerInformation**](TssV2TransactionsGet200ResponseBuyerInformation.md) | | [optional]
1314
**clientReferenceInformation** | [**TssV2TransactionsGet200ResponseClientReferenceInformation**](TssV2TransactionsGet200ResponseClientReferenceInformation.md) | | [optional]

docs/TssV2TransactionsPost201Response.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Name | Type | Description | Notes
1313
**sort** | **String** | A comma separated list of the following form: &#x60;submitTimeUtc:desc&#x60; | [optional]
1414
**count** | **Number** | Results for this page, this could be below the limit. | [optional]
1515
**totalCount** | **Number** | Total number of results. | [optional]
16-
**status** | **String** | The status of the submitted transaction. | [optional]
1716
**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]
1817
**embedded** | [**TssV2TransactionsPost201ResponseEmbedded**](TssV2TransactionsPost201ResponseEmbedded.md) | | [optional]
1918
**links** | [**PtsV2IncrementalAuthorizationPatch201ResponseLinks**](PtsV2IncrementalAuthorizationPatch201ResponseLinks.md) | | [optional]

docs/TssV2TransactionsPost201ResponseEmbeddedApplicationInformationApplications.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **String** | The name of the CyberSource transaction type (such as CC settlement or CC authorization) that the merchant wants to process in a transaction request. More than one transaction type can included in a transaction request. Each transaction type separately returns their own status, reasonCode, rCode, and rFlag messages. | [optional]
77
**reasonCode** | **String** | 3-digit reason code that indicates why the customer profile payment succeeded or failed. | [optional]
8+
**status** | **String** | The status of the submitted transaction. Note: This field may not be returned for all transactions. | [optional]
9+
**reason** | **String** | Description of why a request failed. Note: This field may not be returned for all transactions. | [optional]
810
**rCode** | **String** | Indicates whether the service request was successful. Possible values: - &#x60;-1&#x60;: An error occurred. - &#x60;0&#x60;: The request was declined. - &#x60;1&#x60;: The request was successful. | [optional]
911
**rFlag** | **String** | One-word description of the result of the application. | [optional]
1012
**reconciliationId** | **String** | Reference number that you use to reconcile your CyberSource reports with your processor reports. | [optional]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CyberSource.TssV2TransactionsPost201ResponseEmbeddedErrorInformation
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**reason** | **String** | Description of why a request failed. Note: This field may not be returned for all transactions. | [optional]
7+
8+

docs/TssV2TransactionsPost201ResponseEmbeddedTransactionSummaries.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ Name | Type | Description | Notes
66
**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]
77
**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]
88
**merchantId** | **String** | Your CyberSource merchant ID. | [optional]
9+
**status** | **String** | The status of the submitted transaction. Note: This field may not be returned for all transactions. | [optional]
910
**applicationInformation** | [**TssV2TransactionsPost201ResponseEmbeddedApplicationInformation**](TssV2TransactionsPost201ResponseEmbeddedApplicationInformation.md) | | [optional]
1011
**buyerInformation** | [**TssV2TransactionsPost201ResponseEmbeddedBuyerInformation**](TssV2TransactionsPost201ResponseEmbeddedBuyerInformation.md) | | [optional]
1112
**clientReferenceInformation** | [**TssV2TransactionsPost201ResponseEmbeddedClientReferenceInformation**](TssV2TransactionsPost201ResponseEmbeddedClientReferenceInformation.md) | | [optional]
1213
**consumerAuthenticationInformation** | [**TssV2TransactionsPost201ResponseEmbeddedConsumerAuthenticationInformation**](TssV2TransactionsPost201ResponseEmbeddedConsumerAuthenticationInformation.md) | | [optional]
1314
**deviceInformation** | [**Riskv1authenticationresultsDeviceInformation**](Riskv1authenticationresultsDeviceInformation.md) | | [optional]
15+
**errorInformation** | [**TssV2TransactionsPost201ResponseEmbeddedErrorInformation**](TssV2TransactionsPost201ResponseEmbeddedErrorInformation.md) | | [optional]
1416
**fraudMarkingInformation** | [**TssV2TransactionsGet200ResponseFraudMarkingInformation**](TssV2TransactionsGet200ResponseFraudMarkingInformation.md) | | [optional]
1517
**merchantDefinedInformation** | [**[Ptsv2paymentsMerchantDefinedInformation]**](Ptsv2paymentsMerchantDefinedInformation.md) | The object containing the custom data that the merchant defines. | [optional]
1618
**merchantInformation** | [**TssV2TransactionsPost201ResponseEmbeddedMerchantInformation**](TssV2TransactionsPost201ResponseEmbeddedMerchantInformation.md) | | [optional]

0 commit comments

Comments
 (0)