The parent Kinetex instance.
HTTP method for this request.
Request URL (relative to baseURL or absolute).
Set or override a single header.
Set a JSON body (serializes and sets Content-Type).
Set a FormData body.
Set Bearer token authentication.
Set Basic authentication.
Set API key authentication.
Set Digest Access Authentication (RFC 7616).
Disable auth for this request.
Disable retry for this request.
Set request timeout in ms.
Force a fresh fetch, bypassing any cached response.
Attach an AbortSignal for cancellation.
Set maximum response body size in bytes.
Request HTTP/2.
Request HTTP/1.1.
Do not throw on 4xx/5xx status codes.
Attach cache tags.
Attach arbitrary metadata.
Execute and return the full KinetexResponse.
Execute and return the parsed data. Alias for .send().then(r => r.data).
Execute, parse as text, and return the string.
Execute, return raw bytes.
Execute, return a Blob.
Execute with callback-style handlers.
OptionalonError: (err: KinetexError) => void
Fluent (chained) request builder. Each method returns
thisfor chaining; call.send()or a parser method to execute.Example