Skip to main content
GET
/
api
/
v1
/
trigger_instances
/
active
List active triggers
curl --request GET \
  --url https://flowra.dev/api/v1/trigger_instances/active \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Operation completed successfully",
  "data": {}
}

Authorizations

x-api-key
string
header
required

Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:

Query Parameters

connectedAccountIds
string[]

Array of connected account IDs to filter triggers by

authConfigIds
string[]

Array of auth config IDs to filter triggers by

trigger_ids
string[]

Array of trigger IDs to filter triggers by

trigger_names
string[]

Array of trigger names to filter triggers by

showDisabled
boolean

When set to true, includes disabled triggers in the response

page
number

Page number for pagination. Starts from 1

limit
number

Number of items per page

cursor
string

Cursor for pagination. The cursor is a base64 encoded string of the page and limit

triggerIds
string[]

Array of trigger IDs to filter triggers by (legacy)

triggerNames
string[]

Array of trigger names to filter triggers by (legacy)

deprecatedConnectedAccountUuids
string[]

Array of connected account UUIDs to filter triggers by (deprecated)

deprecatedAuthConfigUuids
string[]

Array of auth config UUIDs to filter triggers by (deprecated)

Response

200 - application/json

Operation completed successfully