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

getCustomerListDetails

Retrieves the details of a customer list with a valid ID

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

Signature

export declare function getCustomerListDetails(
	context: SapccIntegrationContext,
	props: GetCustomerListDetailsProps
): Promise<CustomerList>;

Parameters

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

Returns

Returns representation of a customer list

Referenced Types

Examples

Requesting customer list details

import { sdk } from '~/sdk';

const list = await sdk.commerce.getCustomerListDetails({ customerlist: 'asmInstoreCustomerList'});

On this page