connect-sdk-nodejs
Version:
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
17 lines • 601 B
JavaScript
;
/*
* This file was auto-generated from the API references found at
* https://epayments-api.developer-ingenico.com/s2sapi/v1/
*/
const communicator = require("../utils/communicator");
const processChallengedPayment = function (merchantId, paymentId, paymentContext, cb) {
communicator.json({
method: "POST",
modulePath: "/v1/" + merchantId + "/payments/" + paymentId + "/processchallenged",
body: null,
paymentContext: paymentContext,
cb: cb
});
};
module.exports = processChallengedPayment;
//# sourceMappingURL=processchallenged.js.map