This SDK provides a Browser & Node.js JavaScript client for calling B2C Commerce Shopper APIs.
For a Node.js only SDK that can also access Admin APIs checkout Commerce SDK.
Starting July 31st 2024, all endpoints in the Shopper context API will require the siteId
parameter for new customers. This field is marked as optional for backward compatibility and will be changed to mandatory tentatively by January 2025. You can read more about the planned change here in the notes section.
SLAS will soon require new tenants to pass channel_id
as an argument for retrieving guest access tokens. You can read more about the planned change here.
Please be aware that existing tenants are on a temporary allow list and will see no immediate disruption to service. We do ask that all users seek to adhere to the channel_id
requirement before the end of August to enhance your security posture before the holiday peak season.
In practice, we recommend:
v1.8.0
of the commerce-sdk-isomorphic
.v3.0.0
of the commerce-sdk-isomorphic
.^12.x
, ^14.x
, ^16.x
, ^18.x
npm install commerce-sdk-isomorphic
import {helpers, ShopperLogin, ShopperSearch} from 'commerce-sdk-isomorphic';
const config = {
// SCAPI does not support CORS, so client side requests must use a reverse proxy.
proxy: 'https://localhost:3000',
parameters: {
clientId: '<your-client-id>',
organizationId: '<your-org-id>',
shortCode: '<your-short-code>',
siteId: '<your-site-id>',
},
};
const {access_token} = await helpers.loginGuestUser(
new ShopperLogin(config),
{redirectURI: `${config.proxy}/callback`}
);
const shopperSearch = new ShopperSearch({
...config,
headers: {authorization: `Bearer ${access_token}`},
});
const searchResult = await shopperSearch.productSearch({
parameters: {q: 'shirt'},
});
You can configure how the SDK makes requests using the fetchOptions
parameter. It is passed to node-fetch on the server and whatwg-fetch on browser.
const https = require("https");
const config = {
fetchOptions: {
// By default, requests made using the SDK do not include cookies.
credentials: "include",
timeout: 2000,
agent: new https.agent({ keepAlive: true }),
},
};
For more info, refer to the documentation site.
headers
: Headers to include with API requests.throwOnBadResponse
: When true
, the SDK throws an Error
on responses whose status is not 2xx or 304.You can pass custom query parameters through the SDK to be used in B2C Commerce API Hooks. Custom query parameters must begin with c_
:
const searchResult = await shopperSearch.productSearch({
parameters: {
q: 'shirt',
c_paramkey: '<param-value>'
},
});
Invalid query parameters that are not a part of the API and do not follow the c_
custom query parameter convention are filtered from the request with a warning.
The SDK supports calling B2C Commerce Custom APIs with a helper function, callCustomEndpoint
:
import pkg from "commerce-sdk-isomorphic";
const { helpers } = pkg;
const clientConfig = {
parameters: {
clientId: "<your-client-id>",
organizationId: "<your-org-id>",
shortCode: "<your-short-code>",
siteId: "<your-site-id>",
},
// If not provided, it'll use the default production URI:
// 'https://{shortCode}.api.commercecloud.salesforce.com/custom/{apiName}/{apiVersion}'
// path parameters should be wrapped in curly braces like the default production URI
baseUri: "<your-base-uri>",
};
// Required params: apiName, endpointPath, shortCode, organizaitonId
// Required path params can be passed into:
// options.customApiPathParameters or clientConfig.parameters
const customApiPathParameters = {
apiName: "loyalty-info",
apiVersion: "v1", // defaults to v1 if not provided
endpointPath: "customers",
};
const accessToken = "<INSERT ACCESS TOKEN HERE>";
await helpers.callCustomEndpoint({
options: {
method: "GET",
parameters: {
queryParameter: "queryParameter1",
},
headers: {
// Content-Type is defaulted to application/json if not provided
"Content-Type": "application/json",
authorization: `Bearer ${accessToken}`,
},
customApiPathParameters,
},
clientConfig,
});
await helpers.callCustomEndpoint({
options: {
method: "POST",
parameters: {
queryParameter: "queryParameter1",
},
headers: {
authorization: `Bearer ${accessToken}`,
},
customApiPathParameters,
body: JSON.stringify({ data: "data" }),
},
clientConfig,
});
For more documentation about this helper function, please refer to the commerce-sdk-isomorphic docs.
The Commerce SDK Isomorphic is licensed under BSD-3-Clause license. See the license for details.
Generated using TypeDoc