Edit in GitHubLog an issue

Payment API JavaScript usage

To call the Commerce REST endpoints, initialize the Adobe Commerce Client:

Copied to your clipboard
const { getAdobeCommerceClient } = require('../lib/adobe-commerce');
const commerceClient = await getAdobeCommerceClient(process.env);

Create a new payment method

createOopePaymentMethod creates a new out-of-process payment method with the necessary details such as code, title, and configuration.

Payload parameters:

ParameterTypeRequiredDescription
code
String
Yes
Unique identifier for the payment method.
title
String
No
Display name of the payment method.
description
String
No
Description of the payment method.
active
Boolean
Yes
Status indicating if the method is active.
backend_integration_url
String
No
URL for backend integration, which is an App Builder URL.
stores
Array
No
List of store codes that payment method is available for.
order_status
String
No
Initial order status when using this method. Default is pending.
countries
Array
No
List of countries where the method is available.
currencies
Array
No
Currencies supported by the payment method.
custom_config
Array
No
Custom configuration settings for payment methods.
Copied to your clipboard
try {
const createResponse = await commerceClient.createOopePaymentMethod({
code: 'method-1',
title: 'Method 1',
description: 'Description for Method 1',
active: true,
backend_integration_url: 'https://example.com',
stores: ['store-1', 'store-2'],
order_status: 'processing',
countries: ['US', 'ES'],
currencies: ['USD', 'EUR'],
custom_config: [{ key: 'key1', value: 'value1' }],
});
if (!createResponse.success) {
return errorResponse(createResponse.statusCode, 'Failed to create payment method');
}
console.log('Created payment method:', createResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while creating payment method');
}

List all payment methods

getOopePaymentMethods retrieves a list of all out-of-process payment methods in the Adobe Commerce instance.

Copied to your clipboard
try {
const listResponse = await commerceClient.getOopePaymentMethods();
if (!listResponse.success) {
return errorResponse(listResponse.statusCode, 'Failed to list payment methods');
}
console.log('List of payment methods:', listResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while listing payment methods');
}

Get an OOPE payment method by code

getOopePaymentMethod retrieves one out-of-process payment method by code from the Adobe Commerce instance.

Payload parameters:

ParameterTypeDescription
code
String
Unique identifier for the payment method.
Copied to your clipboard
try {
const getResponse = await commerceClient.getOopePaymentMethod('method-1');
if (!getResponse.success) {
return errorResponse(getResponse.statusCode, 'Failed to retrieve payment method');
}
console.log('Retrieved payment method details:', getResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while retrieving payment method');
}

Retrieve an order by masked cart ID

getOrderByMaskedCartId retrieves order details from the Adobe Commerce instance using maskedCartID. This is typically used when the app builder application receives a webhook or event from the payment gateway.

This method uses the Adobe Commerce API order search criteria.

Payload parameters:

ParameterTypeDescription
maskedCartId
String
The cart ID from the payment method webhook or event.

Example usage:

Copied to your clipboard
try {
const orderResponse = await commerceClient.getOrderByMaskedCartId(maskedCartId);
if (!orderResponse.success) {
const errMsg =
orderResponse.statusCode === HTTP_NOT_FOUND
? 'Order not found for the given maskedCartId.'
: 'Unexpected error getting order by maskedCartId';
return errorResponse(orderResponse.statusCode, errMsg);
}
console.log('Order details:', orderResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Failed to fetch order due to an unexpected error');
}

Create a new OOPE shipping carrier

createOopeShippingCarrier creates a new out-of-process shipping carrier with the necessary details such as code, title, and configuration.

Payload parameters:

ParameterTypeRequiredDescription
code
String
Yes
Unique identifier for the shipping carrier.
title
String
Yes
Display name of the shipping carrier.
stores
Array
No
List of store codes where the shipping carrier is available.
countries
Array
No
List of countries where the shipping carrier is available.
active
Boolean
No
Status indicating if the shipping carrier is active.
sort_order
Integer
No
The sort order of shipping carriers.
tracking_available
Boolean
No
Status indicating if the shipping carrier has available tracking.
shipping_labels_available
Boolean
No
Status indicating if the shipping carrier has available shipping labels.
Copied to your clipboard
try {
const createResponse = await commerceClient.createOopeShippingCarrier({
code: 'DPS',
title: 'Demo Postal Service',
stores: ['default'],
countries: ['US', 'CA'],
active: true,
sort_order: 10,
tracking_available: true,
shipping_labels_available: true,
});
if (!createResponse.success) {
return errorResponse(createResponse.statusCode, 'Failed to create shipping carrier');
}
console.log('Created shipping carrier:', createResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while creating shipping carrier');
}

List all shipping carriers

getOopeShippingCarriers retrieves a list of all out-of-process shipping carriers in the Adobe Commerce instance.

Copied to your clipboard
try {
const listResponse = await commerceClient.getOopeShippingCarriers();
if (!listResponse.success) {
return errorResponse(listResponse.statusCode, 'Failed to list shipping carriers');
}
console.log('List of shipping carriers:', listResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while listing shipping carriers');
}

Get an OOPE shipping carrier by code

getOopeShippingCarrier retrieves one out-of-process shipping carrier by code from the Adobe Commerce instance.

Payload parameters:

ParameterTypeDescription
code
String
Unique identifier for the shipping carrier.
Copied to your clipboard
try {
const getResponse = await commerceClient.getOopeShippingCarrier('DPS');
if (!getResponse.success) {
return errorResponse(getResponse.statusCode, 'Failed to retrieve shipping carrier');
}
console.log('Retrieved shipping carrier details:', getResponse.message);
} catch (error) {
return errorResponse(HTTP_INTERNAL_ERROR, 'Error occurred while retrieving shipping carrier');
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2025 Adobe. All rights reserved.