Triggers
Search trigger preset input values
Return up to 300 selectable values for a single picklist input on a preset. Results are intended for typeahead selection and are not cursor-paginated. When is_truncated is true, refine query to narrow the result set.
get/api/trigger-presets/{preset_id}/input-values
Path parameters
preset_idstring required
ID of the preset the input belongs to.
Query parameters
fieldstring required
Field identifier of the input whose values to list.
querystring
Prefix filter over the input's option values, for typeahead. Matching is on the option value, not its display name.
Response
Successful response.
Example response
{
"results": [
{
"value": "acme/payments-api",
"display_name": "acme/payments-api"
}
]
}