Skip to main content
GET
/
api
/
v1
/
flow
/
apps
/
{uid}
/
triggers
List the trigger events an app exposes
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/flow/apps/{uid}/triggers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "key": "call_started",
      "name": "Call Started",
      "description": "<string>",
      "config": {},
      "configuration_required": true,
      "is_dynamic": true,
      "is_instant": true,
      "is_poll": true
    }
  ]
}

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

Response

OK

data
object[]