> ## Documentation Index
> Fetch the complete documentation index at: https://alpha.developer.tomorro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 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.



## OpenAPI

````yaml /openapi-2025-01-29.alpha.json get /smart-fields/{id}/options
openapi: 3.0.0
info:
  title: Tomorro API
  description: >
    The Tomorro Public API enables you to programmatically manage contracts,
    members, and counterparties. Build powerful integrations that automate your
    contract management workflows.


    ## API Version: 2025-01-29.alpha


    This documentation is for API version `2025-01-29.alpha`.


    ### Using this version

    ```

    curl -X GET https://api.tomorro.com/members \
      -H "x-api-key: YOUR_API_KEY" \
      -H "tomorro-version: 2025-01-29.alpha"
    ```
  version: 2025-01-29.alpha
  contact: {}
servers:
  - url: https://api.tomorro.com/v2
    description: Production
  - url: https://api.demo.tomorro.com/v2
    description: Demo
  - url: http://localhost:3015
    description: Local Development
security: []
tags: []
paths:
  /smart-fields/{id}/options:
    get:
      tags:
        - Smart Fields
      summary: List options for a select/multiselect smart field
      description: >-
        Returns a paginated list of options for a `select` or `multiselect`
        smart field. Supports cursor-based pagination and optional label search.
      operationId: SmartFieldController_listSmartFieldOptions
      parameters:
        - name: id
          required: true
          in: path
          description: The smart field ID.
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
        - name: limit
          required: false
          in: query
          description: Number of items per page (1-50)
          schema:
            minimum: 1
            maximum: 50
            default: 20
            example: 20
            type: number
        - name: after
          required: false
          in: query
          description: >-
            Cursor for forward pagination. Use the `next_cursor` value from a
            previous response.
          schema:
            example: eyJpZCI6IjEyMyJ9
            type: string
        - name: before
          required: false
          in: query
          description: >-
            Cursor for backward pagination. Use the `prev_cursor` value from a
            previous response.
          schema:
            example: eyJpZCI6IjEwMCJ9
            type: string
        - name: term
          required: false
          in: query
          description: Filter options by label (partial match).
          schema:
            example: Technology
            type: string
      responses:
        '200':
          description: Paginated list of options with cursor pagination info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SmartFieldOptionsListResponseDto'
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - X-API-KEY: []
components:
  schemas:
    SmartFieldOptionsListResponseDto:
      type: object
      properties:
        data:
          description: An array of SmartFieldOption objects.
          example:
            - id: 550e8400-e29b-41d4-a716-446655440001
              translations:
                - language: gb
                  value: Technology
              integrationMappings: []
          type: array
          items:
            $ref: '#/components/schemas/SmartFieldOptionDto'
        pagination:
          description: Pagination metadata including cursors and navigation flags.
          example:
            limit: 20
            next_cursor: eyJpZCI6IjEyMyJ9
            prev_cursor: null
            has_next: true
            has_previous: false
          allOf:
            - $ref: '#/components/schemas/PaginationMetaDto'
        links:
          description: HATEOAS navigation links for pagination.
          example:
            self: /smart-fields/550e8400/options?limit=20
            next: /smart-fields/550e8400/options?limit=20&after=eyJpZCI6IjEyMyJ9
            prev: null
          allOf:
            - $ref: '#/components/schemas/PaginationLinksDto'
      required:
        - data
        - pagination
        - links
    SmartFieldOptionDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the option.
          example: 550e8400-e29b-41d4-a716-446655440001
        translations:
          description: Translated labels for this option.
          example:
            - language: fr
              value: Technology
          type: array
          items:
            $ref: '#/components/schemas/SmartFieldOptionTranslationDto'
        integrationMappings:
          description: Integration mappings for this option.
          example:
            - type: hubspot
              externalId: industry_tech
          type: array
          items:
            $ref: '#/components/schemas/SmartFieldOptionIntegrationMappingDto'
      required:
        - id
        - translations
        - integrationMappings
    PaginationMetaDto:
      type: object
      properties:
        limit:
          type: number
          description: The number of items per page.
          example: 20
        next_cursor:
          type: string
          description: >-
            Cursor for fetching the next page. Use with the `after` query
            parameter.
          nullable: true
          example: eyJpZCI6IjEyMyJ9
        prev_cursor:
          type: string
          description: >-
            Cursor for fetching the previous page. Use with the `before` query
            parameter.
          nullable: true
          example: eyJpZCI6IjEwMCJ9
        has_next:
          type: boolean
          description: Whether there are more items available after this page.
          example: true
        has_previous:
          type: boolean
          description: Whether there are items available before this page.
          example: false
      required:
        - limit
        - next_cursor
        - prev_cursor
        - has_next
        - has_previous
    PaginationLinksDto:
      type: object
      properties:
        self:
          type: string
          description: URL of the current page.
          example: /members?limit=20
        next:
          type: string
          description: URL to fetch the next page. Null if there is no next page.
          nullable: true
          example: /members?limit=20&after=eyJpZCI6IjEyMyJ9
        prev:
          type: string
          description: URL to fetch the previous page. Null if there is no previous page.
          nullable: true
          example: /members?limit=20&before=eyJpZCI6IjEwMCJ9
      required:
        - self
        - next
        - prev
    SmartFieldOptionTranslationDto:
      type: object
      properties:
        language:
          type: string
          description: Language code.
          enum:
            - fr
            - gb
            - us
            - es
            - de
            - it
            - nl
            - ru
            - pt
            - br
            - jp
            - gr
            - pl
            - si
            - id
            - zh-cn
            - zh-tw
            - hi
            - vi
            - uk
            - th
            - bg
            - hr
            - dk
            - ee
            - fi
            - hu
            - ie
            - lv
            - lt
            - ro
            - sk
            - se
            - cz
            - 'no'
            - uz
            - tj
            - at
            - is
            - rs
          example: gb
        value:
          type: string
          description: Translated label for this option.
          example: Technology
      required:
        - language
        - value
    SmartFieldOptionIntegrationMappingDto:
      type: object
      properties:
        type:
          type: string
          description: Integration type.
          enum:
            - import
            - generation
            - outlook
            - gmail
            - salesforce
            - hubspot
            - app
          example: hubspot
        externalId:
          type: string
          description: External identifier for this option in the integration.
          example: industry_tech
      required:
        - type
        - externalId
  securitySchemes:
    X-API-KEY:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Get your key at
        https://app.tomorro.com/settings/integrations?integration=api-key

````