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

    Interface ExternalLookupDirectResponse

    Allows the custom function to return a pre-fetched response, skipping the internal HTTP call entirely. The value must match the shape expected by WSDataSourceConfiguration.ResultSetItems / WSDataSourceConfiguration.ResultSet.

    Return { response: ... } from ExternalLookupCustomFunction_<fieldName> to use this.

    See WSDirectResponseExample for usage examples.

    interface ExternalLookupDirectResponse {
        response: string | object;
    }
    Index

    Properties

    Properties

    response: string | object