Search Results for

    Show / Hide Table of Contents

    ExecuteSettings

    Configuration for executing a WebApi action or function.

    interface ExecuteSettings extends RequestSettings {
        /** The name of the action or function to execute. */
        name: string;
        /** For bound actions and functions. If specified as a string, this is the entity name for a collection binding. */
        binding?: [WebApiReference](WebApiReference.md#WebApiReference) | string;
        /** Function or action parameters */
        parameters?: [WebApiParameters](WebApiParameters.md) | [ParameterBuilder](ParameterBuilder.md);
        /** Query for use with composable funcitons. */
        query?: [QueryDefinition](QueryDefinition.md);
    }
    
    In This Article
    Back to top Hitachi Solutions JS Library