Options that are available to all requests.

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

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