For the complete documentation index, see llms.txt. This page is also available as Markdown.

Form API Handler Types

Overview

Form API handler types interact with operations defined inside a Flexi Kanban Form. They are configured as the type field in a Handler.

See Handlers for the full Handler model and where handlers are configured. See Form Studio for how Forms and their Actions are built.


Execute Form Action

Executes a Flexi Kanban Action that is defined inside a Form in Form Studio. This type is used within Form context — on form elements or form global events — to trigger form-scoped backend operations.

Parameters

Parameter
Required
Description

actionId

Yes

The ID of the Form Action to execute, as defined in Form Studio.

Example

json

{
  "type": "executeFormAction",
  "config": {
    "actionId": "form_action_save_and_close"
  }
}

  • Handlers

  • Form Studio

  • Actions and Action Groups

Last updated