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

getCustomerLists

Retrieves a list of all customer lists. This can only be done when logged in ASM.

This method exchanges data with the getCustomerLists endpoint exposed by the SAP OCC API Customer Controller.

Signature

export declare function getCustomerLists(
	context: SapccIntegrationContext
): Promise<UserGroupList>;

Parameters

NameRequiredTypeDescription
contextRequiredSapccIntegrationContext

Returns

Returns representation of a User Group List

Referenced Types

Examples

Requesting a list of all customer lists

import { sdk } from '~/sdk';

const cutomerLists = await sdk.commerce.getCustomerLists();

On this page