You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String vCCorrelationId ="vCCorrelationId_example"; // String | The mandatory correlation id passed by upstream (calling) system.
31
29
CreateInstrumentIdentifierRequest createInstrumentIdentifierRequest =newCreateInstrumentIdentifierRequest(); // CreateInstrumentIdentifierRequest | Please specify either a Card, Bank Account or Enrollable Card
32
-
String clientApplication ="clientApplication_example"; // String | Client application name
33
30
try {
34
-
TmsV1InstrumentIdentifiersPost200Response result = apiInstance.createInstrumentIdentifier(profileId, vCMerchantId, vCCorrelationId, createInstrumentIdentifierRequest, clientApplication);
31
+
TmsV1InstrumentIdentifiersPost200Response result = apiInstance.createInstrumentIdentifier(profileId, createInstrumentIdentifierRequest);
35
32
System.out.println(result);
36
33
} catch (ApiException e) {
37
34
System.err.println("Exception when calling InstrumentIdentifierApi#createInstrumentIdentifier");
**vCCorrelationId** | **String**| The mandatory correlation id passed by upstream (calling) system. |
49
44
**createInstrumentIdentifierRequest** | [**CreateInstrumentIdentifierRequest**](CreateInstrumentIdentifierRequest.md)| Please specify either a Card, Bank Account or Enrollable Card |
50
-
**clientApplication** | **String**| Client application name | [optional]
String vCCorrelationId ="vCCorrelationId_example"; // String | The mandatory correlation id passed by upstream (calling) system.
132
118
String tokenId ="tokenId_example"; // String | The TokenId of an Instrument Identifier.
133
-
String clientApplication ="clientApplication_example"; // String | Client application name
134
119
Long offset =0L; // Long | Starting Payment Instrument record in zero-based dataset that should be returned as the first object in the array. Default is 0.
135
120
Long limit =20L; // Long | The maximum number of Payment Instruments that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100.
136
121
try {
137
-
TmsV1InstrumentIdentifiersPaymentInstrumentsGet200Response result = apiInstance.getAllPaymentInstruments(profileId, vCMerchantId, vCCorrelationId, tokenId, clientApplication, offset, limit);
122
+
TmsV1InstrumentIdentifiersPaymentInstrumentsGet200Response result = apiInstance.getAllPaymentInstruments(profileId, tokenId, offset, limit);
138
123
System.out.println(result);
139
124
} catch (ApiException e) {
140
125
System.err.println("Exception when calling InstrumentIdentifierApi#getAllPaymentInstruments");
**vCCorrelationId** | **String**| The mandatory correlation id passed by upstream (calling) system. |
152
135
**tokenId** | **String**| The TokenId of an Instrument Identifier. |
153
-
**clientApplication** | **String**| Client application name | [optional]
154
136
**offset** | **Long**| Starting Payment Instrument record in zero-based dataset that should be returned as the first object in the array. Default is 0. | [optional][default to 0]
155
137
**limit** | **Long**| The maximum number of Payment Instruments that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. | [optional][default to 20]
String vCCorrelationId ="vCCorrelationId_example"; // String | The mandatory correlation id passed by upstream (calling) system.
238
212
String tokenId ="tokenId_example"; // String | The TokenId of an Instrument Identifier.
239
213
UpdateInstrumentIdentifierRequest updateInstrumentIdentifierRequest =newUpdateInstrumentIdentifierRequest(); // UpdateInstrumentIdentifierRequest | Specify the previous transaction ID to update.
240
-
String clientApplication ="clientApplication_example"; // String | Client application name
241
214
try {
242
-
TmsV1InstrumentIdentifiersPost200Response result = apiInstance.updateInstrumentIdentifier(profileId, vCMerchantId, vCCorrelationId, tokenId, updateInstrumentIdentifierRequest, clientApplication);
215
+
TmsV1InstrumentIdentifiersPost200Response result = apiInstance.updateInstrumentIdentifier(profileId, tokenId, updateInstrumentIdentifierRequest);
243
216
System.out.println(result);
244
217
} catch (ApiException e) {
245
218
System.err.println("Exception when calling InstrumentIdentifierApi#updateInstrumentIdentifier");
**vCCorrelationId** | **String**| The mandatory correlation id passed by upstream (calling) system. |
257
228
**tokenId** | **String**| The TokenId of an Instrument Identifier. |
258
229
**updateInstrumentIdentifierRequest** | [**UpdateInstrumentIdentifierRequest**](UpdateInstrumentIdentifierRequest.md)| Specify the previous transaction ID to update. |
259
-
**clientApplication** | **String**| Client application name | [optional]
String vCCorrelationId ="vCCorrelationId_example"; // String | The mandatory correlation id passed by upstream (calling) system.
30
28
CreatePaymentInstrumentRequest createPaymentInstrumentRequest =newCreatePaymentInstrumentRequest(); // CreatePaymentInstrumentRequest | Specify the customer's payment details for card or bank account.
31
-
String clientApplication ="clientApplication_example"; // String | Client application name
32
29
try {
33
-
TmsV1PaymentinstrumentsPatch200Response result = apiInstance.createPaymentInstrument(profileId, vCMerchantId, vCCorrelationId, createPaymentInstrumentRequest, clientApplication);
30
+
TmsV1PaymentinstrumentsPatch200Response result = apiInstance.createPaymentInstrument(profileId, createPaymentInstrumentRequest);
34
31
System.out.println(result);
35
32
} catch (ApiException e) {
36
33
System.err.println("Exception when calling PaymentInstrumentApi#createPaymentInstrument");
**vCCorrelationId** | **String**| The mandatory correlation id passed by upstream (calling) system. |
48
43
**createPaymentInstrumentRequest** | [**CreatePaymentInstrumentRequest**](CreatePaymentInstrumentRequest.md)| Specify the customer's payment details for card or bank account. |
49
-
**clientApplication** | **String**| Client application name | [optional]
0 commit comments