Options to be passed when creating the REST client instance.

interface RESTOptions {
    authPrefix: string;
    baseURL: string;
    enforceAuth: boolean;
}

Properties

authPrefix: string

The authorization prefix to use for requests.

baseURL: string

The base API url.

enforceAuth: boolean

Enforces authorization token requirement in auth required endpoints.