Skip to main content
GET
/
api
/
v1
/
flow
/
apps
/
{uid}
/
actions
/
{action_key}
/
config-schema
Get an action's config field schema (what to ask)
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/flow/apps/{uid}/actions/{action_key}/config-schema \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "",
  "data": {
    "requires_connection": false,
    "fields": [
      {
        "key": "table_uuid",
        "label": "Table",
        "required": true,
        "type": "select",
        "options_kind": "tables"
      },
      {
        "key": "query_description",
        "label": "AI context / prompt",
        "required": false,
        "type": "text"
      },
      {
        "key": "max_results",
        "label": "Max results",
        "required": false,
        "type": "number",
        "default": 10
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mihu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uid
string
required
action_key
string
required

Query Parameters

context
enum<string>
default:intent
Available options:
intent,
scenario

Response

Config schema