Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

getPageableCustomers

Gets paginated list of customers for Assisted Service Module

This method exchanges data with the getPageableCustomers endpoint exposed by the SAP OCC API Customers Controller.

Signature

export declare function getPageableCustomers(
	context: SapccIntegrationContext,
	props: GetPageableCustomersProps
): Promise<CustomerSearchPage>;

Parameters

NameRequiredTypeDescription
contextRequiredSapccIntegrationContext
propsRequiredGetPageableCustomersPropsParameter object which can be used with this method. Refer to its type definition to learn about possible properties.

Returns

Returns page of customers

Referenced Types

Examples

Requesting a customer page

const getPageableCustomers = await sdk.commerce.getPageableCustomers({
  currentPage: 1,
  customerListId: "asmInstoreCustomerList",
  pageSize: 5,
});

On this page