The axios instance baseURL. Read at call time.
OpenAPI path template (e.g. "/v3/document/asset/{id}/file")
OptionalpathParams: Record<string, string | number | undefined> | nullValues to substitute into the path template
OptionalqueryParams: Record<string, unknown> | nullKey/value pairs to append as query string (undefined/null values are omitted)
Build a full URL string from a baseURL, an OpenAPI path template, optional path parameters, and optional query parameters.
Intended for use-cases where a URL string is needed directly — e.g.
— without executing a fetch.
NOTE: Only flat scalar query params (string | number | boolean) are supported.