Catalogs  /  List trigger types

List trigger types

GET/v1/trigger-types

Returns every trigger type with the providers that fire it and the filter fields each supports. Use a value from providers as the integrationId when creating a flow, rather than hardcoding slugs.

Query parameters
platform
string
Scope to one builder: webflow, wordpress, wix, or framer.
Response fields
type
string
The trigger type, e.g. form_submission.
display_label
string
Human-friendly label for the type.
category
string
Grouping for the UI, e.g. forms.
providers
array
Tool slugs that fire this trigger. Use one as integrationId on a flow.
filters
array
The filter fields this trigger supports, with types and labels.
These endpoints need no API key, so they're rate limited to 5 requests per minute per IP. Cache the results rather than polling.
GET/v1/trigger-types
curl https://app.converly.io/api/v1/trigger-types
200 OK
{
  "data": [
    {
      "type": "form_submission",
      "display_label": "Form submission",
      "category": "forms",
      "providers": ["gravity-forms", "typeform", "…"],
      "filters": [
        { "key": "form_id", "type": "string",
          "required": false, "label": "Form ID" }
      ]
    }
  ]
}