
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
onlinepayments-sdk-client-js
Advanced tools
The JavaScript based client SDK that can be used for client to server communication between you and the Online Payments platform.
The Online Payments JavaScript SDK helps you with accepting payments on your website, through the Online Payments platform.
The SDKs’ main functions is to establish a secure channel between your web app and our server. This channel processes security credentials to guarantee the safe transit of your customers’ data during the payment process.
The OnlinePayments SDK helps you with
The minimum supported browser versions are based on the latest implemented feature of "private class fields":
Install this SDK using your preferred node package manager npm, yarn or pnpm.
npm install onlinepayments-sdk-client-js
The SDK can be used as UMD module or as ES module.
The SDK is available under global namespace onlinepaymentssdk and can be used in the following way:
<!DOCTYPE html>
<html lang="en">
<head>
...
</head>
<body>
<script src="./node_modules/onlinepayments-sdk-client-js/dist/onlinepayments-sdk-client-js.umd.js"></script>
<script>
const session = new window.onlinepaymentssdk.Session({
...
})
</script>
</body>
</html>
Most bundlers (webpack, rollup, parcel, etc.) support ES Modules. The SDK can be imported in the following way:
import { Session } from 'onlinepayments-sdk-client-js';
To accept your first payment using the SDK, complete the steps below. Also see the section "Payment Steps" for more details on these steps.
import { Session } from 'onlinepayments-sdk-client-js';
const session = new Session({
clientSessionId: '47e9dc332ca24273818be2a46072e006',
customerId: '9991-0d93d6a0e18443bd871c89ec6d38a873',
clientApiUrl: 'https://clientapi.com',
assetUrl: 'https://asset.com',
});
BasicPaymentProduct
and accountsOnFile lists and request your customer to select one.session
.getBasicPaymentItems({
countryCode: 'BE',
amountOfMoney: { amount: 1000, currencyCode: 'EUR' },
isRecurring: false,
})
.then((basicPaymentItems) => {
const {
basicPaymentItems, // array of `BasicPaymentProduct`
accountsOnFile, // array of `AccountOnFile`
json, // raw JSON (returned from server)
paymentProductById, // method to get basicPaymentItem when id is known
basicPaymentProductByAccountOnFileId, // method to get the corresponding product, based on the provided Account on File ID
} = basicPaymentItems;
// Display the contents of basicPaymentItems & accountsOnFile to your user
})
.catch((err) => {
// when promise rejects, inform user what happened
});
session
.getPaymentProduct(1, paymentContext)
.then((paymentProduct) => {
const {
paymentProductFields, // array of all the fields the user needs to fill out.
paymentProductFieldById, // method return `PaymentProductField` by given id
json, // raw server response from internal call
} = paymentProduct;
// Display the fields in paymentProductFields to your user.
})
.catch((error) => {
// handle error state
});
PaymentRequest.See the PaymentRequest section for more info.
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
const paymentRequest = new PaymentRequest();
paymentRequest.setPaymentProduct(paymentProduct);
paymentRequest.setValue('cardNumber', '1245 1254 4575 45');
paymentRequest.setValue('cvv', '123');
paymentRequest.setValue('expiryDate', '12/25');
const encryptor = session.getEncryptor();
encryptor
.encrypt(paymentRequest)
.then((payload) => {
// payload is the encrypted payment request which can safely be send to your server
})
.catch((err) => {
// payment request can not be encrypted, handle error state
});
encryptedCustomerInput field.For all interaction with the SDK an instance of Session is required. The following code fragment shows how Session is
initialized. The session details are obtained by performing a create Client Session call via the Server API.
import { Session } from 'onlinepayments-sdk-client-js';
const session = new Session({
clientSessionId: '47e9dc332ca24273818be2a46072e006',
customerId: '9991-0d93d6a0e18443bd871c89ec6d38a873',
clientApiUrl: 'https://clientapi.com',
assetUrl: 'https://asset.com',
});
Almost all methods that are offered by Session are simple wrappers around the Client API. They make the request and
convert the response to JavaScript objects that may contain convenience functions.
If you just want the raw JSON without all the extra SDK details then you can always get that via the json field of those objects.
The PaymentContext is an object that contains the context/settings of the upcoming payment. It is required as an
argument to some methods of the Session instance. This object can contain the following details:
export interface PaymentContext {
countryCode: string; // ISO 3166-1 alpha-2 country code
amountOfMoney: {
amount?: number; // Total amount in the smallest denominator of the currency
currencyCode: string; // ISO 4217 currency code
};
isRecurring?: boolean; // Set `true` when payment is recurring. Default false.
}
This interface can be imported as type when using TypeScript:
import type { PaymentContext } from 'onlinepayments-sdk-client-js';
const paymentContext: PaymentContext = {
// ...
};
This object contains the available Payment Items for the current payment. Use the getBasicPaymentItems function on the
Session instance to request the data.
The object you will receive is of BasicPaymentItems type, which contains two lists for all available
BasicPaymentProducts and AccountOnFiles. These items should be displayed to the user, so that they can select their
preferred payment method.
The code fragment below shows how to get the BasicPaymentItems instance.
session
.getBasicPaymentItems(paymentContext)
.then((basicPaymentItems) => {
const {
basicPaymentItems, // array of `BasicPaymentProduct`
accountsOnFile, // array of `AccountOnFile`
json, // raw JSON (returned from server)
paymentProductById, // method to get basicPaymentItem when id is known
basicPaymentProductByAccountOnFileId, // method to get basicPaymentItem when account
} = basicPaymentItems;
})
.catch((err) => {
// when promise rejects, inform user what happened
});
The SDK offers two types to represent information about payment products: BasicPaymentProduct and PaymentProduct.
Practically speaking, instances of BasicPaymentProduct contain only the information that is required to display a
simple list of payment products from which the user can select one.
The type PaymentProduct contains additional information such as the individual form fields that the user needs to fill
out. This type is typically used when creating a form that asks the user for their details. See the
PaymentProduct section for more info.
Below is an example for how to obtain display names and assets for the Visa product.
const basicPaymentProduct = basicPaymentItems.basicPaymentItemById[1];
basicPaymentProduct.id; // 1
basicPaymentProduct.displayHints.label; // VISA
basicPaymentProduct.displayHints.logo; // http://www.domain.com/path/to/visa/logo.gif
basicPaymentProduct.accountOnFileById[1].getMaskedValueByAttributeKey['alias'].value; // **** **** **** 1234
An instance of AccountOnFile represents information about a stored card product for the current user. Available
Account on File IDs for the current payment must be provided in the body of the server create Client Session call.
The code fragment below shows how display data for an account on file can be retrieved. This label can be shown to the customer, along with the logo of the corresponding payment product.
// This contains all available accounts on file for the payment product.
basicPaymentProduct.accountsOnFile;
// This contains all accounts on file for payment product VISA
const aof = basicPaymentItems.basicPaymentItemById[1].accountsOnFile;
// This shows a mask based nicely formatted value for that obfuscated cardNumber.
// The mask that is used is defined in the displayHints of this account on file.
// If the mask was {{9999}} {{9999}} {{9999}} {{9999}} then the result would be
// **** **** **** 7412
const maskedValue = aof.getMaskedValueByAttributeKey('cardNumber');
The type BasicPaymentProduct only contains the information required by a customer to distinguish one payment product
from another. However, once a payment item or an account on file has been selected, the customer must provide additional
information, such as a bank account number, a credit card number, or an expiry date, before a payment can be processed.
Each payment item can have several fields that need to be completed to process a payment. Instances of
BasicPaymentProduct do not contain any information about these fields.
Information about the fields of payment products is represented by instances of PaymentProductField, which are
contained in instances of PaymentProduct. The class PaymentProductField is described below. The session component
can be used to retrieve instances of PaymentProduct, as shown in the following code fragment.
session
.getPaymentProduct(1, paymentContext)
.then((paymentProduct) => {
const {
paymentProductFields, // array of all the fields the user still needs to fill out
paymentProductFieldById, // method return `PaymentProductField` by given id
json, // raw server response from internal call
} = paymentProduct;
})
.catch((error) => {
// handle error state
});
The fields of payment products are represented by instances of PaymentProductField. Each field has an identifier, a
type, a definition of restrictions that apply to the value of the field, and information about how the field should be
presented graphically to the customer. Additionally, an instance of a field can be used to determine whether a given
value is valid for the field.
In the code fragment below, the field with identifier “cvv” is retrieved from a payment product. The data restrictions
of the field are inspected to see whether this field is a required field or an optional field. Additionally, the display
hints of the field are inspected to see whether the values a customer provides should be obfuscated in a user interface.
const cvvField = paymentProduct.paymentProductFieldById['cvv'];
cvvField.dataRestrictions.isRequired; // state if value is required
cvvField.displayHints.obfuscate; // state if needs to be obfuscated
Once a payment product has been selected and an instance of PaymentProduct has been retrieved, a payment request can
be constructed. This class must be used as a container for all the values the customer provided.
A payment request can be instantiated using the PaymentRequest
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
const paymentRequest = new PaymentRequest();
// paymentProduct is an instance of the `PaymentProduct` class (not `BasicPaymentProduct`)
paymentRequest.setPaymentProduct(paymentProduct);
When the payment product is set, methods such as masking and unmasking values, validation, and encryption will work.
However, the PaymentRequest can be instantiated in the "detached" mode. This means it can be used for data encryption
without the internal validation against the specific payment product. To do this, instantiate the class with the
parameter in constructor:
const paymentRequest = new PaymentRequest(true);
This tells it to work in the detached mode. Things to have in mind:
paymentRequest.setPaymentProductId(number) method for this.undefined if
called without the payment product set. You can still use the masking utility from the SDK for value formatting.paymentRequest.isValid() will return true in the detached mode.A PaymentProduct has a property tokenize, which is used to indicate whether a payment request should be stored as an
account on file. The code fragment below shows how a payment request should be constructed when the request should not
be stored as an account on file.
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
// create payment requet
const paymentRequest = new PaymentRequest();
paymentRequest.setPaymentProduct(paymentProduct);
paymentRequest.setTokenize(false);
If the customer selected an account on file, both the account on file and the corresponding payment product must be
supplied while constructing the payment request, as shown below. Instances of AccountOnFile can be retrieved from
instances of BasicPaymentProduct and PaymentProduct.
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
const paymentRequest = new PaymentRequest();
paymentRequest.setPaymentProduct(paymentProduct);
// accountOnFile is an instance of the `AccountOnFile` class
paymentRequest.setAccountOnFile(accountOnFile);
paymentRequest.setTokenize(false);
Once a payment request has been configured, the values for the payment product's fields can be supplied as follows. The identifiers of the fields, such as “cardNumber” and “cvv” in the example below, are used to set the values of the fields using the payment request.
paymentRequest.setValue('cardNumber', '1245 1254 4575 45');
paymentRequest.setValue('cvv', '123');
Once all values have been supplied, the payment request can be validated. Behind the scenes the validation uses the
DataRestrictions class for each of the fields that were added to the PaymentRequest. After the validation, a list of
errors is available, which indicates the problems that occurred during validation. If there are no errors, the payment
request can be encrypted and sent to our platform via your e-commerce server. If there are validation errors, the
customer should be provided with feedback about these errors as explained above.
const { isValid, getErrorMessageIds } = paymentRequest;
if (!isValid()) {
console.log('the following fields are invalid', getErrorMessageIds());
}
The validations are the PaymentProductFieldValidators linked to the PaymentProductFields and are returned as value,
for example:
paymentRequest.setValue('cardNumber', '456735000042797');
paymentRequest.getErrorMessageIds(); // ['luhn'];
When the PaymentRequest has been initialised with the selected payment product, the payment product field values,
potentially the selected account on file info and tokenization info, you can encrypt it by accessing theEncryptor
class using session.getEncryptor:
const encryptor = session.getEncryptor();
encryptor
.encrypt(paymentRequest)
.then((payload) => {
// payload is the encrypted payment request which can safely be send to the server
})
.catch((err) => {
// payment request can not be encrypted, handle error state
});
Although it's possible to use your own encryption algorithms to encrypt a payment request, we advise you to use the encryption functionality that is offered by the SDK.
When the encryptor runs, the PaymentRequest is first validated for potential issues with the data. This makes sure
we're not spending time encrypting invalid data that our platform will not be able to process in the Server API.
The first six digits of a payment card number are known as the Issuer Identification Number (IIN). The
session.iinDetails call can be used to retrieve the payment product and network that are associated to the provided
IIN.
An instance of Session can be used to check which payment product is associated with an IIN. The result of this check
is an instance of IINDetailsResponse. This class has a property status that indicates the result of the check and a
property paymentProductId that indicates which payment product is associated with the IIN.
The property status can have several values:
"SUPPORTED" indicates that the IIN is associated with a payment product that is supported by our platform."UNKNOWN indicates that the IIN is not recognized."NOT_ENOUGH_DIGITS" indicates that fewer than six digits have been provided and that the IIN check cannot be
performed."EXISTING_BUT_NOT_ALLOWED" indicates that the provided IIN is recognized, but that the corresponding product is not
allowed for the current payment.const partialCreditCardNumber = '456735';
const paymentContext: PaymentContextWithAmount = {
// ...
};
session
.getIinDetails(partialCreditCardNumber, paymentContext)
.then((response) => {
// response is an instance of `IinDetailsResponse`
const isSupported = response.status === 'SUPPORTED';
})
.catch((error) => {
// handle error state
});
Some cards are co-branded and could be processed as either a local card (with a local brand) or an international
card (with an international brand). In case you are not setup to process these local cards, this API call will not
return that card type in its response. As soon as the first 6 digits of the card number have been captured you can use
the method session.getIinDetails API to verify the card type and check if you can accept this card. The returned
paymentProductId can be used to provide visual feedback to the user by showing the appropriate payment product logo.
Note:
paymentContextis only optional when you have already calledsession.getBasicPaymentItemsorsession.getPaymentProductNetworks; then thepaymentContextwill be taken from the session.
To help in formatting field values based on masks, the SDK offers a base set of masking functions in PaymentRequest,
PaymentProductField and AccountOnFile. Besides these base masking functions, the Javascript SDK offers the following
additional method in PaymentProductField:
applyWildcardMask: (newValue: string, oldValue?: string) => MaskedString;
This set of masking functions all make use of the StringFormatter class to apply the actual logic, which is also
publicly available in the SDK.
To help in formatting field values based on masks the SDk offers the MaskingUtil class. It allows you to apply and
unapply masks on string.
import { MaskingUtil } from 'onlinepayments-sdk-client-js';
const maskingUtil = new MaskingUtil();
const mask = '{{9999}} {{9999}} {{9999}} {{9999}}';
const value = '1234567890123456';
// apply masked value
const maskedString = maskingUtil.applyMask(mask, value);
const maskedValue = maskedString.getFormattedValue(); // "1234 5678 9012 3456"
// remove masked value
maskingUtil.removeMask(mask, maskedValue); // "1234567890123456"
Setting up and completing a payment using the JavaScript SDK involves the following steps:
This is done using information such as session and customer identifiers, connection URLs and payment information like currency and total amount.
import type { PaymentContext } from 'onlinepayments-sdk-client-js';
import { Session } from 'onlinepayments-sdk-client-js';
// create session
const session = new Session({
clientSessionId: '47e9dc332ca24273818be2a46072e006',
customerId: '9991-0d93d6a0e18443bd871c89ec6d38a873',
clientApiUrl: 'https://clientapi.com',
assetUrl: 'https://asset.com',
});
// payment information
const paymentContext: PaymentContext = {
countryCode: 'NL',
amountOfMoney: {
amount: 1000,
currencyCode: 'EUR',
},
};
A successful response from Create Session can be used directly as input for the Session constructor.
clientSessionId / customerId properties are used for authentication purposes. These can be obtained by your
e-commerce server using on of the Server SDKs or directly using the Create Session API.clientApiUrl and assetUrl that the SDK should connect to. The SDK communicates with two types of servers to
perform its tasks. One type of server offers the Client API discussed above, and the other type of server stores the
static resources used by the SDK, such as the logos of payment products.paymentContext): This information is not needed to construct a session, but you will need to
provide it when requesting any payment product information. The payment products that the customer can choose from
depend on payment information, so the Client SDK needs this information to be able to do its job. What is needed is:
amountOfMoney.amountamountOfMoney.currencyCodecountryCodeRetrieve the payment items and accounts on file that can be used for this payment from the Client API. Your application can use this data to create the payment product selection screen.
session
.getBasicPaymentItems(paymentContext)
.then(({ basicPaymentItems }) => {
console.log(basicPaymentItems);
// list of `BasicPaymentProduct`
// see `import('onlinepaymentssdk').BasicPaymentProduct`
})
.catch(console.error);
After initialization, the JavaScript SDK offers easy access to all the payment items that can be used for this payment. Payment items are instances of BasicPaymentProduct. Your app can use these items to create a screen that lists them all.
For some payment products, customers can indicate that they want our platform to store part of the data they enter while using such a payment product. For example, it is possible to store the cardholder name and the card number for most credit card payment products. The stored data is referred to as an account on file or token. When the customer wants to use the same payment product for another payment, it is possible to select one of the stored accounts on file for this payment. In such cases, the customer doesn't have to enter the information that is already stored in the account on file. The list of available payment products that the SDK receives from the Client API also contains the accounts on file for each payment product. Your application can present this list of payment products and accounts on file to the customer.
Retrieve all the details about the payment product fields from the Client API that the customer needs to provide based on the selected payment product or account on file. Your application can use this information to create the payment product details screen.
import type { PaymentProduct, PaymentProductField } from 'onlinepayments-sdk-client-js';
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
const paymentItemId = 1; // could be extracted from url path
// create an instance of PaymentRequest to build the request
const paymentRequest = new PaymentRequest();
function renderField(field: PaymentProductField) {
// each field value needs to be set to the `paymentRequest` with `setValue`
// example: `paymentRequest.setValue('cardholderName', 'John Do')`
// .. render field to screen
}
session
.getPaymentProduct(id, paymentContext)
.then((paymentProduct: PaymentProduct) => {
// attach the paymentProduct to the request
paymentRequest.setPaymentProduct(paymentProduct);
const { paymentProductFields } = paymentProduct;
// we can render the fields!!
paymentProductFields.forEach(renderField);
})
.catch(console.error);
Once the customer has selected a payment item or a stored account on file, the SDK can request which information needs to be provided by the customer to perform a payment. When a single product is retrieved, the SDK provides a list of all the fields that should be rendered, including display hints and validation rules. If the customer selected an account on file, information that is already in this account on file can be prefilled in the input fields, instead of requesting it from the customer. The data that can be stored and prefilled on behalf of the customer is, of course, in line with applicable regulation. For a credit card transaction, for instance, the customer is still expected to input the CVC. Again, the example app can be used as the starting point to create your screen. If there is no additional information that needs to be entered, this screen can be skipped.
Encrypt all the provided payment information with session.getEncryptor. Your application sends the encrypted result to
your e-commerce server, which sends it to the Server API.
import { PaymentRequest } from 'onlinepayments-sdk-client-js';
const paymentRequest = new PaymentRequest();
paymentRequest.setPaymentProduct(paymentProduct);
paymentRequest.setValue('cardholderName', 'John Do');
if (!paymentRequest.isValid()) {
throw new Error(`Errors found in ${paymentRequest.getErrorMessageIds()}`);
}
session
.getEncryptor()
.encrypt(paymentRequest)
.then((encryptedPayload: string) => {
// `encryptedPayload` can be use to send to the Server SDK to create a payment
})
.catch(console.error);
All the heavy lifting, such as requesting a public key from the Client API, performing the encryption and BASE-64 encoding the result into one string, is done for you by the SDK. You only need to make sure that the PaymentRequest object contains all the information entered by the user. The encrypted payload needs to be sent to your e-commerce server where it can be forwarded to the Server API.
It's up to you and your application to show the customer the correct screens based on the response of the Server API call. In some cases, the payment hasn't finished just yet as the customer must be redirected to a third party (such as a bank or PayPal) to authorise the payment. See the Server API documentation on what kinds of responses the Server API can provide. The Client API has no part in the remainder of the payment.
This library contains unit- and integration tests written with Vitest.
Vitest starts in watch mode by default in development environment and run mode in CI
environment (when process.env.CI presents) smartly, see documentation.
Testing input and output of small isolated functions (units) can be found in ./src/__test__/unit.
You don't need to expose any environment variables in order to execute unit tests, you can run them by using:
npm run test
FAQs
The JavaScript based client SDK that can be used for client to server communication between you and the Online Payments platform.
The npm package onlinepayments-sdk-client-js receives a total of 76 weekly downloads. As such, onlinepayments-sdk-client-js popularity was classified as not popular.
We found that onlinepayments-sdk-client-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.