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

# Poll Device Link

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json post /api/link/device/poll
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/link/device/poll:
    post:
      tags:
        - Link
      summary: Poll Device Link
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: poll_device_link
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkDevicePollRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LinkDevicePollView'
          description: HTTP 200 response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: HTTP 422 response
components:
  schemas:
    LinkDevicePollRequest:
      properties:
        session:
          type: string
          maxLength: 64
          minLength: 1
          title: Session
      additionalProperties: false
      type: object
      required:
        - session
      title: LinkDevicePollRequest
    LinkDevicePollView:
      properties:
        status:
          type: string
          title: Status
        interval:
          anyOf:
            - type: integer
            - type: 'null'
          title: Interval
        node_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Node Id
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        relay_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Relay Url
        enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Enabled
        verifier_fingerprint:
          anyOf:
            - type: string
            - type: 'null'
          title: Verifier Fingerprint
        nodes_base_domain:
          anyOf:
            - type: string
            - type: 'null'
          title: Nodes Base Domain
        requires_restart:
          type: boolean
          title: Requires Restart
          default: false
        restart_keys:
          items:
            type: string
          type: array
          title: Restart Keys
        mcp_http_enabled:
          type: boolean
          title: Mcp Http Enabled
          default: false
        mcp_skipped_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Mcp Skipped Reason
      type: object
      required:
        - status
      title: LinkDevicePollView
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````