TreeINFO-For-M365 documentation
    Preparing search index...

    Interface WSRequestOptions

    Internal options object passed to the HTTP layer when executing a WS request. Built from WSDataSourceConfiguration merged with optional ExternalLookupRequestOverride.

    interface WSRequestOptions {
        body?: unknown;
        headers?: Record<string, string>;
        isSoap?: boolean;
        method: string;
        params?: Record<string, string>;
        url: string;
    }
    Index

    Properties

    body?: unknown
    headers?: Record<string, string>
    isSoap?: boolean

    true when WSDataSourceConfiguration.RequestType is "SOAP" — drives responseType: "text" in the HTTP layer.

    method: string
    params?: Record<string, string>
    url: string