v1

latestOpenAPI 3.1.1Productboard Proprietary2026-07-2453178243.2 KB
fields

List field values

Returns a paginated list of allowed values for select-type and status fields (SINGLE_SELECT, MULTI_SELECT, TAG, STATUS). Use this endpoint to retrieve all available options for fields with many values, or when you need to paginate through all values.

For fields with fewer values (≤1000), the values are returned inline in the field response. For fields with more values, the field response contains a reference to this endpoint.

Tag fields are returned using the same SelectOptionValue shape as MULTI_SELECT, since tags are multi-select internally.

get/entities/fields/{id}/values

Path parameters

idstring required

Field identifier (UUID for custom fields, API name for default fields).

Query parameters

assignedEntityType[]EntityType[]

Filter values by assigned entity type. Useful for status fields where different entity types have different status sets.

pageCursorstring

Cursor for pagination. Use the value from links.next to fetch the next page.

Response

A paginated list of field values

Example response

{
  "data": [
    {
      "id": "a09fccc8-a4ac-4262-84f1-68ad77f82265",
      "fields": {
        "name": "High Priority",
        "color": "red"
      }
    }
  ]
}