List options for a select/multiselect smart field
Returns a paginated list of options for a select or multiselect smart field. Supports cursor-based pagination and optional label search.
Authorizations
API key for authentication. Get your key at https://app.tomorro.com/settings/integrations?integration=api-key
Path Parameters
The smart field ID.
"550e8400-e29b-41d4-a716-446655440000"
Query Parameters
Number of items per page (1-50)
1 <= x <= 5020
Cursor for forward pagination. Use the next_cursor value from a previous response.
"eyJpZCI6IjEyMyJ9"
Cursor for backward pagination. Use the prev_cursor value from a previous response.
"eyJpZCI6IjEwMCJ9"
Filter options by label (partial match).
"Technology"
Response
Paginated list of options with cursor pagination info
An array of SmartFieldOption objects.
[
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"translations": [{ "language": "gb", "value": "Technology" }],
"integrationMappings": []
}
]Pagination metadata including cursors and navigation flags.
{
"limit": 20,
"next_cursor": "eyJpZCI6IjEyMyJ9",
"prev_cursor": null,
"has_next": true,
"has_previous": false
}HATEOAS navigation links for pagination.
{
"self": "/smart-fields/550e8400/options?limit=20",
"next": "/smart-fields/550e8400/options?limit=20&after=eyJpZCI6IjEyMyJ9",
"prev": null
}