Skip to main content
GET
/
flows
/
{flow_id}
/
triggers
List flow triggers
curl --request GET \
  --url https://app.kapso.ai/api/v1/flows/{flow_id}/triggers \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "trigger-123abc",
      "flow_id": "flow-456def",
      "trigger_type": "inbound_message",
      "active": true,
      "display_name": "Customer Support Trigger",
      "triggerable": {
        "id": "inbound-trigger-123",
        "whatsapp_config_id": "config-789ghi"
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key required for all endpoints

Path Parameters

flow_id
string<uuid>
required

Response

A list of flow triggers

data
object[]
I