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

# Get Tap Device

> Returns a single tap device by ID.



## OpenAPI

````yaml https://server.stage.overflow.co/api/docs/openapi.json get /api/v3/tap/devices/{deviceId}
openapi: 3.0.0
info:
  title: Overflow Open API
  description: |

    The documentation for the Overflow Open APIs.

    To access the OpenAPI spec in JSON/YAML format, navigate to:

    * `/api/docs/openapi.json`
    * `/api/docs/openapi.yaml`
  version: '3.0'
  contact: {}
servers:
  - url: https://server.stage.overflow.co
    description: API server
security: []
tags: []
paths:
  /api/v3/tap/devices/{deviceId}:
    get:
      tags:
        - Tap
      summary: Get Tap Device
      description: Returns a single tap device by ID.
      operationId: OpenApiTapDevicesController_getDeviceById
      parameters:
        - name: deviceId
          required: true
          in: path
          description: The ID of the tap device.
          schema:
            example: 6816f7ce7d2a1b4c12ab3501
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetTapDeviceByIdResponse'
        '404':
          description: Device not found.
      security:
        - ClientId: []
          ApiKey: []
components:
  schemas:
    GetTapDeviceByIdResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
              description: Device ID
              example: 6816f7ce7d2a1b4c12ab3501
            serialNumber:
              type: number
              description: Device serial number
              example: 104233
            deviceType:
              type: string
              enum:
                - Lanyard
                - Stand
                - Bracelet
                - Wristband
                - Plates/Disc/Magnet/Label
                - Flex
                - Plate Square
                - Arm Rest Rectangle
                - Plates
                - Disc
                - Magnet
                - Label
              description: Device form factor (e.g., Lanyard, Stand, Bracelet)
              example: Lanyard
            groupId:
              type: string
              nullable: true
              description: Group ID (null if unassigned)
            group:
              type: object
              properties:
                id:
                  type: string
                  description: Group ID
                name:
                  type: string
                  description: Group name
              required:
                - id
                - name
              nullable: true
              description: Embedded group (null if unassigned)
            currentDestination:
              type: object
              properties:
                id:
                  type: string
                  description: Destination ID
                name:
                  type: string
                  description: Destination name
                type:
                  type: string
                  enum:
                    - web
                    - sms
                  nullable: true
                  description: Destination type
              required:
                - id
                - name
                - type
              nullable: true
              description: Current destination via group (null if unassigned)
            createdAt:
              type: string
              format: date-time
              description: Record creation timestamp
              example: '2026-05-01T17:22:11.421Z'
            updatedAt:
              type: string
              format: date-time
              description: Record last updated timestamp
              example: '2026-05-04T14:09:32.145Z'
            archivedAt:
              type: string
              format: date-time
              nullable: true
              description: Archive timestamp, null if active
          required:
            - id
            - serialNumber
            - deviceType
            - groupId
            - group
            - currentDestination
            - createdAt
            - updatedAt
            - archivedAt
          description: Tap device for the given id.
      required:
        - data
  securitySchemes:
    ClientId:
      type: apiKey
      in: header
      name: x-client-id
      description: Client ID for API authentication
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for API authentication

````