Skip to content

Latest commit

 

History

History
155 lines (102 loc) · 4.92 KB

InstrumentIdentifierApi.md

File metadata and controls

155 lines (102 loc) · 4.92 KB

CyberSource.InstrumentIdentifierApi

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

tmsV1InstrumentidentifiersTokenIdDelete(profileId, tokenId)

Delete an Instrument Identifier

Example

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);

Parameters

Name Type Description Notes
profileId String The id of a profile containing user specific TMS configuration.
tokenId String The TokenId of an Instrument Identifier.

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

tmsV1InstrumentidentifiersTokenIdGet

TmsV1InstrumentidentifiersPost200Response tmsV1InstrumentidentifiersTokenIdGet(profileId, tokenId)

Retrieve an Instrument Identifier

Example

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);

Parameters

Name Type Description Notes
profileId String The id of a profile containing user specific TMS configuration.
tokenId String The TokenId of an Instrument Identifier.

Return type

TmsV1InstrumentidentifiersPost200Response

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json;charset=utf-8
  • Accept: application/json;charset=utf-8

tmsV1InstrumentidentifiersTokenIdPatch

TmsV1InstrumentidentifiersPost200Response tmsV1InstrumentidentifiersTokenIdPatch(profileId, tokenId, body)

Update a Instrument Identifier

Example

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);

Parameters

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.

Return type

TmsV1InstrumentidentifiersPost200Response

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json;charset=utf-8
  • Accept: application/json;charset=utf-8