Options that are available to all requests that support specifying a store

interface CommonStoreEnabledRequestOptions {
    correlationId?: string;
    params?: Record<
        string,
        undefined
        | string
        | number
        | boolean
        | (string | number | boolean)[],
    >;
    retry?: CommercetoolsRetryConfig;
    storeKey?: string;
}

Hierarchy (View Summary)

Properties

correlationId?: string

A unique id used to track the source of a request.

params?: Record<
    string,
    undefined
    | string
    | number
    | boolean
    | (string | number | boolean)[],
>

Query string parameters. For repeated param=value in the query string, define an array with values

Retry configuration

storeKey?: string

The key of the store that you want this call to apply to