@squidcloud/client
    Preparing search index...

    Interface ApiOptions

    Optional configuration for an API call, including headers, query, and path parameters.

    interface ApiOptions {
        headers?: Record<string, string | number | boolean>;
        pathParams?: Record<string, string | number | boolean>;
        queryParams?: Record<string, string | number | boolean>;
    }
    Index

    Properties

    headers?: Record<string, string | number | boolean>

    Headers to include in the API request.

    pathParams?: Record<string, string | number | boolean>

    Path parameters to substitute in the API URL.

    queryParams?: Record<string, string | number | boolean>

    Query parameters to append to the API URL.