Skip to main content
POST
/
api
/
v1
/
flow
/
apps
/
{uid}
/
options
Fetch dynamic dropdown options for a step's field
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/flow/apps/{uid}/options \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "kind": "channels",
  "connection_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "params": {}
}
'
{
  "success": true,
  "data": [
    {
      "label": "#general",
      "value": "C01234ABCDE"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.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

Body

application/json
kind
string
required

App-specific lookup name. See description for the full per-app list.

Example:

"channels"

connection_uuid
string<uuid> | null

Required for connect-category apps. Optional/null for builtin apps (Logic, Tables).

params
object

Cascading dependencies. E.g. for Zoho module_fields send {module: 'Contacts'}; for Airtable tables send {base_id: '...'}.

Response

OK

success
boolean
Example:

true

data
object[]