T402 API Reference - v2.8.0
    Preparing search index...

    Interface QueryDiscoveryInfo

    Discovery info for query parameter methods (GET, HEAD, DELETE)

    interface QueryDiscoveryInfo {
        input: {
            type: "http";
            method: QueryParamMethods;
            queryParams?: Record<string, unknown>;
            headers?: Record<string, string>;
        };
        output?: { type?: string; format?: string; example?: unknown };
    }
    Index

    Properties

    Properties

    input: {
        type: "http";
        method: QueryParamMethods;
        queryParams?: Record<string, unknown>;
        headers?: Record<string, string>;
    }
    output?: { type?: string; format?: string; example?: unknown }