Alokai

RequestVariables

Request variables is a set of values, passed via cookies by default. It's subset might be passed to the endpoint via query params.

interface RequestVariables {
	channel?: string;
	country?: string;
	currency?: string;
	customerGroupId?: string;
	locale?: string;
	store?: string;
}

Properties

NameRequiredTypeDescription
channelOptionalstring
countryOptionalstring
currencyOptionalstring
customerGroupIdOptionalstring
localeOptionalstring
storeOptionalstring

On this page