Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch/update customer payment instrument card #49

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
'use strict';

var cybersourceRestApi = require('cybersource-rest-client');
var path = require('path');
var filePath = path.resolve('Data/Configuration.js');
var configuration = require(filePath);
var createCustomerPaymentInstrument = require('./create-customer-non-default-payment-instrument-card');

function patch_customer_payment_instrument(callback) {
var customerTokenId = 'AB695DA801DD1BB6E05341588E0A3BDC';
try {
var configObject = new configuration();
var apiClient = new cybersourceRestApi.ApiClient();

var requestObj =
new cybersourceRestApi.PostCustomerPaymentInstrumentRequest();

requestObj._default = false;
var card =
new cybersourceRestApi.Tmsv2customersEmbeddedDefaultPaymentInstrumentCard();
card.expirationMonth = '12';
card.expirationYear = '2031';
card.type = '001';
requestObj.card = card;

var billTo =
new cybersourceRestApi.Tmsv2customersEmbeddedDefaultPaymentInstrumentBillTo();
billTo.firstName = 'Chandra';
billTo.lastName = 'Shekhar';
billTo.company = 'CyberSource';
billTo.address1 = '1 Market St';
billTo.locality = 'San Francisco';
billTo.administrativeArea = 'CA';
billTo.postalCode = '94105';
billTo.country = 'US';
billTo.email = 'test@cybs.com';
billTo.phoneNumber = '4158880000';
requestObj.billTo = billTo;

var opts = [];

var instance = new cybersourceRestApi.CustomerPaymentInstrumentApi(
configObject,
apiClient
);

createCustomerPaymentInstrument.create_customer_non_default_payment_instrument_card(
function (error, data) {
if (data) {
var paymentInstrumentTokenId = data['id'];
instance.patchCustomersPaymentInstrument(
customerTokenId,
paymentInstrumentTokenId,
requestObj,
opts,
function (error, data, response) {
if (error) {
console.log('\nError : ' + JSON.stringify(error));
} else if (data) {
console.log('\nData : ' + JSON.stringify(data));
}

console.log('\nResponse : ' + JSON.stringify(response));
console.log(
'\nResponse Code of Patch a Customer Payment Instrument : ' +
JSON.stringify(response['status'])
);
callback(error, data, response);
}
);
}
}
);
} catch (error) {
console.log('\nException on calling the API : ' + error);
}
}
if (require.main === module) {
patch_customer_payment_instrument(function () {
console.log('\nPatchCustomerPaymentInstrument end.');
});
}
module.exports.patch_customer_payment_instrument =
patch_customer_payment_instrument;