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

# Get Lookup Values by Lookup Type ID

> Retrieves a list of lookup values associated with a specific lookup type identified by `LutTypeID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/lookupTypes/{LutTypeID}/values
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/lookupTypes/{LutTypeID}/values:
    get:
      tags:
        - Lookups
      summary: Get Lookup Values by Lookup Type ID
      description: >-
        Retrieves a list of lookup values associated with a specific lookup type
        identified by `LutTypeID`.
      operationId: get-lookup-values-by-luttypeid
      parameters:
        - name: LutTypeID
          in: path
          required: true
          description: >-
            The unique identifier of the lookup type for which values are being
            retrieved.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of lookup values associated with the specified lookup type.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Lookup'
components:
  schemas:
    Lookup:
      type: object
      description: >-
        Represents a lookup value, including its identifiers, associated types,
        and additional metadata.
      properties:
        LutTypeRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference to the lookup type, typically used for informational
            purposes.
        LutID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the lookup value.
        LutTypeID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the lookup type associated with this value.
        LutValue:
          type: string
          nullable: true
          description: The actual value of the lookup item.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the lookup value was last updated.
        OrderKey:
          type: integer
          format: int32
          nullable: true
          description: The order or priority key associated with the lookup value.
        LutCode:
          type: integer
          format: int32
          nullable: true
          description: >-
            A code associated with the lookup value, typically used for
            categorization or identification.
        Ckey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the lookup value for additional
            identification or reference.
        ServiceLutId:
          type: integer
          format: int32
          nullable: true
          description: The service-related identifier associated with the lookup value.
        CreatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the lookup value was created.
        CreatedBT:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user or system that created the lookup value.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: >-
            The identifier of the user or system that last updated the lookup
            value.
        LinkedLutId:
          type: integer
          format: int32
          nullable: true
          description: The identifier of a related or linked lookup value.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````