> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vos.verolabs.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List controlled reference values

> List controlled reference values



## OpenAPI

````yaml openapi.oms.vi.json GET /api/v1/util/reference
openapi: 3.0.3
info:
  title: VOS OMS Public API
  version: 1.0.0
  description: >-
    Public REST API surface for Vero OMS. Authentication requests use
    platform.verolabs.co. REST API requests use api-oms.verolabs.co.
servers:
  - url: https://platform.verolabs.co
    description: Authentication host
  - url: https://api-oms.verolabs.co
    description: REST API host
security: []
tags:
  - name: Authentication
    description: Xác thực tài khoản và khôi phục mật khẩu.
  - name: Trading
    description: Order entry, quote, IOI, and trading activity APIs.
  - name: Portfolio & Risk
    description: Accounts, holdings, mappings, and risk-rule read APIs.
  - name: Administration
    description: Permissions, groups, workflow, reference data, and audit APIs.
  - name: System & Diagnostics
    description: Health and latency endpoints.
paths:
  /api/v1/util/reference:
    get:
      tags:
        - Administration
      summary: List controlled reference values
      description: |-
        Requires `kind=comp_id` or `kind=sender_sub_id`.

        Requires `Authorization: Bearer <jwt>` from `POST /api/auth/login`.
      operationId: get_api_v1_util_reference
      parameters:
        - name: kind
          in: query
          required: true
          schema:
            type: string
            enum:
              - comp_id
              - sender_sub_id
          description: >-
            Reference data kind. Supported values are `comp_id` and
            `sender_sub_id`.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReferenceValuesResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
      security:
        - bearerAuth: []
      servers:
        - url: https://api-oms.verolabs.co
components:
  schemas:
    ReferenceValuesResponse:
      type: object
      properties:
        kind:
          type: string
          description: Reference, rule, or request kind.
        values:
          type: array
          items:
            $ref: '#/components/schemas/ReferenceValue'
          description: Reference values returned by the response.
      description: ReferenceValuesResponse schema.
    ReferenceValue:
      type: object
      properties:
        kind:
          type: string
          enum:
            - comp_id
            - sender_sub_id
          description: Reference, rule, or request kind.
        value:
          type: string
          description: Value associated with the record.
        created_by:
          type: string
          description: User that created the record.
        created_at:
          type: string
          format: date-time
          description: Timestamp when the record was created.
      description: ReferenceValue schema.
    Error:
      type: object
      properties:
        error:
          type: string
          description: Machine-readable error code or error category.
        status:
          type: integer
          description: Status value returned by the API.
      description: Standard error response envelope.
  responses:
    BadRequest:
      description: Invalid parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````