---
title: "Search trigger preset input values"
method: GET
path: "/api/trigger-presets/{preset_id}/input-values"
tags: ["Triggers"]
---

# Search trigger preset input values

`GET /api/trigger-presets/{preset_id}/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.

## Path parameters

- `preset_id` string, required

## Query parameters

- `field` string, required
- `query` string

## Response `200`

Successful response.

- PlatformTriggerPresetInputValueListResponse
  - `results` PlatformTriggerPresetInputValue[], required — The bounded set of selectable values matching the query.
    - `value` string, required — The exact value to send in the trigger's `inputs` for this choice (e.g. a channel name, a user's email, etc).
    - `display_name` string, required — Human-readable name for this value.
  - `is_truncated` boolean, required — Whether additional matches were omitted. When true, refine `query` to narrow the result set.
  - `request_id` string, required — Platform-generated request ID for support correlation.

## Other responses

- `400` — Invalid request (malformed JSON, invalid parameter values, unknown fields).
- `401` — Missing or invalid authentication token.
- `403` — Token valid but lacks permission for the requested operation.
- `404` — Resource not found.
- `408` — Backend did not respond within the timeout window.
- `429` — Rate limit exceeded. Includes Retry-After header.
- `500` — Unexpected server-side failure.
- `503` — Backend temporarily unavailable.

---

[API](https://skmtc.dev/gleanwork/apis/glean-platform-api.md) · [All operations](https://skmtc.dev/gleanwork/apis/glean-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/gleanwork/glean-platform-api/revisions/46c121f70527/schema)
