@makehq/sdk
    Preparing search index...

    Type Alias FetchOptions

    Options for configuring API requests.

    type FetchOptions = {
        body?:
            | Record<string, JSONValue>
            | JSONValue[]
            | string
            | Uint8Array
            | ArrayBuffer;
        headers?: Record<string, string>;
        method?: string;
        query?: Record<string, QueryValue>;
    }
    Index

    Properties

    body?:
        | Record<string, JSONValue>
        | JSONValue[]
        | string
        | Uint8Array
        | ArrayBuffer

    Request body as an object, string, or raw binary payload

    headers?: Record<string, string>

    HTTP headers to include with the request

    method?: string

    HTTP method (GET, POST, PATCH, etc.)

    query?: Record<string, QueryValue>

    Query parameters to append to the URL