Integration App SDK - v1.14.0
    Preparing search index...

    Interface ConnectionRequest

    interface ConnectionRequest {
        path: any;
        method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH";
        pathParameters?: Record<string, string>;
        headers?: Record<string, string>;
        query?: Record<string, string>;
        data?: any;
    }
    Index

    Properties

    path: any
    method?: "GET" | "POST" | "DELETE" | "PUT" | "PATCH"
    pathParameters?: Record<string, string>
    headers?: Record<string, string>
    query?: Record<string, string>
    data?: any