Skip to content

Commit 2e537ec

Browse files
api-spec changes
1 parent 323d136 commit 2e537ec

12 files changed

+476
-291
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
# PostPaymentCredentialsRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**paymentCredentialType** | **String** | The type of payment credentials to be returned. By default, payment credentials include network token and cryptogram or dynamic CVV. If \"NETWORK_TOKEN\" is supplied then only network token will be returned and cryptogram or dynamic CVV will be excluded. Possible Values: - NETWORK_TOKEN | [optional]
8+
9+
10+

docs/Riskv1authenticationresultsOrderInformation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**amountDetails** | [**Riskv1authenticationresultsOrderInformationAmountDetails**](Riskv1authenticationresultsOrderInformationAmountDetails.md) | | [optional]
8-
**lineItems** | [**List<Riskv1authenticationresultsOrderInformationLineItems>**](Riskv1authenticationresultsOrderInformationLineItems.md) | | [optional]
98

109

1110

docs/Riskv1authenticationresultsOrderInformationLineItems.md

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

docs/Tmsv2customersEmbeddedDefaultPaymentInstrumentEmbeddedInstrumentIdentifierTokenizedCard.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**type** | **String** | The network token card association brand Possible Values: - visa - mastercard | [optional]
7+
**type** | **String** | The network token card association brand Possible Values: - visa - mastercard - americanexpress | [optional]
88
**state** | **String** | State of the network token or network token provision Possible Values: - ACTIVE : Network token is active. - SUSPENDED : Network token is suspended. This state can change back to ACTIVE. - DELETED : This is a final state for a network token instance. - UNPROVISIONED : A previous network token provision was unsuccessful. | [optional]
9+
**enrollmentId** | **String** | Unique Identifier for the enrolled PAN. This Id is provided by the card association when a network token is provisioned successfully. | [optional]
10+
**tokenReferenceId** | **String** | Unique Identifier for the network token. This Id is provided by the card association when a network token is provisioned successfully. | [optional]
911
**reason** | **String** | Issuers state for the network token Possible Values: - INVALID_REQUEST : The network token provision request contained invalid data. - CARD_VERIFICATION_FAILED : The network token provision request contained data that could not be verified. - CARD_NOT_ELIGIBLE : Card can currently not be used with issuer for tokenization. - CARD_NOT_ALLOWED : Card can currently not be used with card association for tokenization. - DECLINED : Card can currently not be used with issuer for tokenization. - SERVICE_UNAVAILABLE : The network token service was unavailable or timed out. - SYSTEM_ERROR : An unexpected error occurred with network token service, check configuration. | [optional]
1012
**number** | **String** | The token requestors network token | [optional]
1113
**expirationMonth** | **String** | Two-digit month in which the network token expires. Format: `MM`. Possible Values: `01` through `12`. | [optional]

docs/TokenApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Method | HTTP request | Description
99

1010
<a name="postTokenPaymentCredentials"></a>
1111
# **postTokenPaymentCredentials**
12-
> String postTokenPaymentCredentials(tokenId, profileId)
12+
> String postTokenPaymentCredentials(tokenId, postPaymentCredentialsRequest, profileId)
1313
1414
Generate Payment Credentials for a TMS Token
1515

@@ -24,9 +24,10 @@ Generate Payment Credentials for a TMS Token
2424

2525
TokenApi apiInstance = new TokenApi();
2626
String tokenId = "tokenId_example"; // String | The Id of a token representing a Customer, Payment Instrument or Instrument Identifier.
27+
PostPaymentCredentialsRequest postPaymentCredentialsRequest = new PostPaymentCredentialsRequest(); // PostPaymentCredentialsRequest |
2728
String profileId = "profileId_example"; // String | The Id of a profile containing user specific TMS configuration.
2829
try {
29-
String result = apiInstance.postTokenPaymentCredentials(tokenId, profileId);
30+
String result = apiInstance.postTokenPaymentCredentials(tokenId, postPaymentCredentialsRequest, profileId);
3031
System.out.println(result);
3132
} catch (ApiException e) {
3233
System.err.println("Exception when calling TokenApi#postTokenPaymentCredentials");
@@ -39,6 +40,7 @@ try {
3940
Name | Type | Description | Notes
4041
------------- | ------------- | ------------- | -------------
4142
**tokenId** | **String**| The Id of a token representing a Customer, Payment Instrument or Instrument Identifier. |
43+
**postPaymentCredentialsRequest** | [**PostPaymentCredentialsRequest**](PostPaymentCredentialsRequest.md)| |
4244
**profileId** | **String**| The Id of a profile containing user specific TMS configuration. | [optional]
4345

4446
### Return type

0 commit comments

Comments
 (0)