cybersource-rest-client
Version:
Node.js SDK for the CyberSource REST API
224 lines (154 loc) • 12.3 kB
Markdown
# CyberSource.PaymentInstrumentApi
All URIs are relative to *https://apitest.cybersource.com*
Method | HTTP request | Description
------------- | ------------- | -------------
[**deletePaymentInstrument**](PaymentInstrumentApi.md#deletePaymentInstrument) | **DELETE** /tms/v1/paymentinstruments/{paymentInstrumentId} | Delete a Payment Instrument
[**getPaymentInstrument**](PaymentInstrumentApi.md#getPaymentInstrument) | **GET** /tms/v1/paymentinstruments/{paymentInstrumentId} | Retrieve a Payment Instrument
[**patchPaymentInstrument**](PaymentInstrumentApi.md#patchPaymentInstrument) | **PATCH** /tms/v1/paymentinstruments/{paymentInstrumentId} | Update a Payment Instrument
[**postPaymentInstrument**](PaymentInstrumentApi.md#postPaymentInstrument) | **POST** /tms/v1/paymentinstruments | Create a Payment Instrument
<a name="deletePaymentInstrument"></a>
# **deletePaymentInstrument**
> deletePaymentInstrument(paymentInstrumentId, opts)
Delete a Payment Instrument
| | | | | --- | --- | --- | |**Standalone Payment Instruments**<br>A Payment Instrument represents tokenized payment information such as expiration date, billing address & card type.<br>A Payment Instrument token does not store the card number. A Payment Instrument is associated with an [Instrument Identifier](#token-management_instrument-identifier_create-an-instrument-identifier) that represents either a payment card number, or in the case of an ACH bank account, the routing and account number.<br>**Standalone Payment Instruments do not belong to a [Customer](#token-management_customer_create-a-customer).**| |**Deleting a Payment Instrument**<br>Your system can use this API to delete an existing Payment Instrument.<br>Any Instrument Identifiers representing the card number will also be deleted if they are not associated with any other Payment Instruments.
### Example
```javascript
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.PaymentInstrumentApi();
var paymentInstrumentId = "paymentInstrumentId_example"; // String | The Id of a payment instrument.
var opts = {
'profileId': "profileId_example" // String | The Id of a profile containing user specific TMS configuration.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
apiInstance.deletePaymentInstrument(paymentInstrumentId, opts, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**paymentInstrumentId** | **String**| The Id of a payment instrument. |
**profileId** | **String**| The Id of a profile containing user specific TMS configuration. | [optional]
### Return type
null (empty response body)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json;charset=utf-8
- **Accept**: application/json;charset=utf-8
<a name="getPaymentInstrument"></a>
# **getPaymentInstrument**
> PostPaymentInstrumentRequest getPaymentInstrument(paymentInstrumentId, opts)
Retrieve a Payment Instrument
| | | | | --- | --- | --- | |**Standalone Payment Instruments**<br>A Payment Instrument represents tokenized payment information such as expiration date, billing address & card type.<br>A Payment Instrument token does not store the card number. A Payment Instrument is associated with an [Instrument Identifier](#token-management_instrument-identifier_create-an-instrument-identifier) that represents either a payment card number, or in the case of an ACH bank account, the routing and account number.<br>**Standalone Payment Instruments do not belong to a [Customer](#token-management_customer_create-a-customer).**| |**Retrieving a Payment Instrument**<br>Your system can use this API to retrieve an existing Payment Instrument.<br>To perform a payment with a particular Payment Instrument simply specify the [Payment Instrument Id in the payments request](#payments_payments_process-a-payment_samplerequests-dropdown_authorization-using-tokens_authorization-with-customer-payment-instrument-and-shipping-address-token-id_liveconsole-tab-request-body).
### Example
```javascript
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.PaymentInstrumentApi();
var paymentInstrumentId = "paymentInstrumentId_example"; // String | The Id of a payment instrument.
var opts = {
'profileId': "profileId_example", // String | The Id of a profile containing user specific TMS configuration.
'retrieveBinDetails': true // Boolean | Retrieve the Bin Details of PAN or network token
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.getPaymentInstrument(paymentInstrumentId, opts, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**paymentInstrumentId** | **String**| The Id of a payment instrument. |
**profileId** | **String**| The Id of a profile containing user specific TMS configuration. | [optional]
**retrieveBinDetails** | **Boolean**| Retrieve the Bin Details of PAN or network token | [optional]
### Return type
[**PostPaymentInstrumentRequest**](PostPaymentInstrumentRequest.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json;charset=utf-8
- **Accept**: application/json;charset=utf-8
<a name="patchPaymentInstrument"></a>
# **patchPaymentInstrument**
> PatchPaymentInstrumentRequest patchPaymentInstrument(paymentInstrumentId, patchPaymentInstrumentRequest, opts)
Update a Payment Instrument
| | | | | --- | --- | --- | |**Standalone Payment Instruments**<br>A Payment Instrument represents tokenized payment information such as expiration date, billing address & card type.<br>A Payment Instrument token does not store the card number. A Payment Instrument is associated with an [Instrument Identifier](#token-management_instrument-identifier_create-an-instrument-identifier) that represents either a payment card number, or in the case of an ACH bank account, the routing and account number.<br>**Standalone Payment Instruments do not belong to a [Customer](#token-management_customer_create-a-customer).**| |**Updating a Payment Instrument**<br>Your system can use this API to update an existing Payment Instrument.
### Example
```javascript
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.PaymentInstrumentApi();
var paymentInstrumentId = "paymentInstrumentId_example"; // String | The Id of a payment instrument.
var patchPaymentInstrumentRequest = new CyberSource.PatchPaymentInstrumentRequest(); // PatchPaymentInstrumentRequest |
var opts = {
'profileId': "profileId_example", // String | The Id of a profile containing user specific TMS configuration.
'retrieveBinDetails': true, // Boolean | Retrieve the Bin Details of PAN or network token
'ifMatch': "ifMatch_example" // String | Contains an ETag value from a GET request to make the request conditional.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.patchPaymentInstrument(paymentInstrumentId, patchPaymentInstrumentRequest, opts, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**paymentInstrumentId** | **String**| The Id of a payment instrument. |
**patchPaymentInstrumentRequest** | [**PatchPaymentInstrumentRequest**](PatchPaymentInstrumentRequest.md)| |
**profileId** | **String**| The Id of a profile containing user specific TMS configuration. | [optional]
**retrieveBinDetails** | **Boolean**| Retrieve the Bin Details of PAN or network token | [optional]
**ifMatch** | **String**| Contains an ETag value from a GET request to make the request conditional. | [optional]
### Return type
[**PatchPaymentInstrumentRequest**](PatchPaymentInstrumentRequest.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json;charset=utf-8
- **Accept**: application/json;charset=utf-8
<a name="postPaymentInstrument"></a>
# **postPaymentInstrument**
> PostPaymentInstrumentRequest postPaymentInstrument(postPaymentInstrumentRequest, opts)
Create a Payment Instrument
| | | | | --- | --- | --- | |**Standalone Payment Instruments**<br>A Payment Instrument represents tokenized payment information such as expiration date, billing address & card type.<br>A Payment Instrument token does not store the card number. A Payment Instrument is associated with an [Instrument Identifier](#token-management_instrument-identifier_create-an-instrument-identifier) that represents either a payment card number, or in the case of an ACH bank account, the routing and account number.<br>**Standalone Payment Instruments do not belong to a [Customer](#token-management_customer_create-a-customer).**<br><br>**Creating a Payment Instrument**<br>It is recommended you [create a Payment Instrument via a Payment Authorization](#payments_payments_process-a-payment_samplerequests-dropdown_authorization-with-token-create_authorization-with-customer-token-creation_liveconsole-tab-request-body), this can be for a zero amount.<br>In Europe: You should perform Payer Authentication alongside the Authorization.| |**Payment Network Tokens**<br>Network tokens perform better than regular card numbers and they are not necessarily invalidated when a cardholder loses their card, or it expires.<br>A Payment Network Token will be automatically created and used in future payments if you are enabled for the service.<br>A Payment Network Token can also be [provisioned for an existing Instrument Identifier](#token-management_instrument-identifier_enroll-an-instrument-identifier-for-payment-network-token).<br>For more information about Payment Network Tokens see the Developer Guide.<br><br>**Payments with Payment Instruments**<br>To perform a payment with a particular Payment Instrument specify the [Payment Instrument in the payment request](#payments_payments_process-a-payment_samplerequests-dropdown_authorization-using-tokens_authorization-with-customer-payment-instrument-and-shipping-address-token-id_liveconsole-tab-request-body).
### Example
```javascript
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.PaymentInstrumentApi();
var postPaymentInstrumentRequest = new CyberSource.PostPaymentInstrumentRequest(); // PostPaymentInstrumentRequest |
var opts = {
'profileId': "profileId_example", // String | The Id of a profile containing user specific TMS configuration.
'retrieveBinDetails': true // Boolean | Retrieve the Bin Details of PAN or network token
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.postPaymentInstrument(postPaymentInstrumentRequest, opts, callback);
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**postPaymentInstrumentRequest** | [**PostPaymentInstrumentRequest**](PostPaymentInstrumentRequest.md)| |
**profileId** | **String**| The Id of a profile containing user specific TMS configuration. | [optional]
**retrieveBinDetails** | **Boolean**| Retrieve the Bin Details of PAN or network token | [optional]
### Return type
[**PostPaymentInstrumentRequest**](PostPaymentInstrumentRequest.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json;charset=utf-8
- **Accept**: application/json;charset=utf-8