> ## 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 All Machine Attributes

> Retrieves all attributes associated with a specific machine identified by `MachineID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/machines/{MachineID}/attributes
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/machines/{MachineID}/attributes:
    get:
      tags:
        - Machine Attribute
      summary: Get All Machine Attributes
      description: >-
        Retrieves all attributes associated with a specific machine identified
        by `MachineID`.
      operationId: get-machine-attributes
      parameters:
        - name: MachineID
          in: path
          required: true
          description: >-
            The unique identifier of the machine whose attributes are being
            retrieved.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: A list of all attributes associated with the specified machine.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MachineAttribute'
components:
  schemas:
    MachineAttribute:
      type: object
      description: >-
        Represents a single attribute of a machine, including its identifier,
        value, and associated metadata.
      properties:
        DeviceAttributeID:
          type: integer
          format: int64
          description: The unique identifier of the device attribute.
        MachineID:
          type: integer
          format: int64
          description: The unique identifier of the machine associated with this attribute.
        DeviceAttributeValue:
          type: string
          nullable: true
          description: The value assigned to this device attribute.
        DeviceAttributeCodeID:
          type: integer
          format: int32
          nullable: true
          description: The code identifier for this device attribute.
        DeviceAttributeName:
          type: string
          nullable: true
          description: The name of the device attribute.
        DeviceAttributeGroup:
          type: string
          nullable: true
          description: The group or category to which this device attribute belongs.
        DeviceAttributeReadOnlyBit:
          type: boolean
          description: Indicates whether the device attribute is read-only.
        MachineAttributeRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference string for the machine attribute, typically used for
            informational purposes.
        MachineRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference string for the machine, typically used for informational
            purposes.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````