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

    Interface BodyDiscoveryInfo

    Discovery info for body methods (POST, PUT, PATCH)

    interface BodyDiscoveryInfo {
        input: {
            type: "http";
            method: BodyMethods;
            bodyType: "json" | "form-data" | "text";
            body: Record<string, unknown>;
            queryParams?: Record<string, unknown>;
            headers?: Record<string, string>;
        };
        output?: { type?: string; format?: string; example?: unknown };
    }
    Index

    Properties

    Properties

    input: {
        type: "http";
        method: BodyMethods;
        bodyType: "json" | "form-data" | "text";
        body: Record<string, unknown>;
        queryParams?: Record<string, unknown>;
        headers?: Record<string, string>;
    }
    output?: { type?: string; format?: string; example?: unknown }