All URIs are relative to https://apitest.cybersource.com
Method | HTTP request | Description |
---|---|---|
tmsV1InstrumentidentifiersTokenIdDelete | DELETE /tms/v1/instrumentidentifiers/{tokenId} | Delete an Instrument Identifier |
tmsV1InstrumentidentifiersTokenIdGet | GET /tms/v1/instrumentidentifiers/{tokenId} | Retrieve an Instrument Identifier |
tmsV1InstrumentidentifiersTokenIdPatch | PATCH /tms/v1/instrumentidentifiers/{tokenId} | Update a Instrument Identifier |
tmsV1InstrumentidentifiersTokenIdDelete(profileId, tokenId)
Delete an Instrument Identifier
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.InstrumentIdentifierApi();
var profileId = "profileId_example"; // String | The id of a profile containing user specific TMS configuration.
var tokenId = "tokenId_example"; // String | The TokenId of an Instrument Identifier.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
apiInstance.tmsV1InstrumentidentifiersTokenIdDelete(profileId, tokenId, callback);
Name | Type | Description | Notes |
---|---|---|---|
profileId | String | The id of a profile containing user specific TMS configuration. | |
tokenId | String | The TokenId of an Instrument Identifier. |
null (empty response body)
No authorization required
- Content-Type: application/json;charset=utf-8
- Accept: application/json;charset=utf-8
TmsV1InstrumentidentifiersPost200Response tmsV1InstrumentidentifiersTokenIdGet(profileId, tokenId)
Retrieve an Instrument Identifier
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.InstrumentIdentifierApi();
var profileId = "profileId_example"; // String | The id of a profile containing user specific TMS configuration.
var tokenId = "tokenId_example"; // String | The TokenId of an Instrument Identifier.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.tmsV1InstrumentidentifiersTokenIdGet(profileId, tokenId, callback);
Name | Type | Description | Notes |
---|---|---|---|
profileId | String | The id of a profile containing user specific TMS configuration. | |
tokenId | String | The TokenId of an Instrument Identifier. |
TmsV1InstrumentidentifiersPost200Response
No authorization required
- Content-Type: application/json;charset=utf-8
- Accept: application/json;charset=utf-8
TmsV1InstrumentidentifiersPost200Response tmsV1InstrumentidentifiersTokenIdPatch(profileId, tokenId, body)
Update a Instrument Identifier
var CyberSource = require('CyberSource');
var apiInstance = new CyberSource.InstrumentIdentifierApi();
var profileId = "profileId_example"; // String | The id of a profile containing user specific TMS configuration.
var tokenId = "tokenId_example"; // String | The TokenId of an Instrument Identifier.
var body = new CyberSource.Body1(); // Body1 | Please specify the previous transaction Id to update.
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.tmsV1InstrumentidentifiersTokenIdPatch(profileId, tokenId, body, callback);
Name | Type | Description | Notes |
---|---|---|---|
profileId | String | The id of a profile containing user specific TMS configuration. | |
tokenId | String | The TokenId of an Instrument Identifier. | |
body | Body1 | Please specify the previous transaction Id to update. |
TmsV1InstrumentidentifiersPost200Response
No authorization required
- Content-Type: application/json;charset=utf-8
- Accept: application/json;charset=utf-8