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

# Get device settings

> Required permission: settings:read.



## OpenAPI

````yaml /openapi.json get /devices/{id}/settings
openapi: 3.1.0
info:
  title: Italic API
  version: 2.0.0
  description: >-
    Recordings, devices, and notifications. Text syncs to Italic; audio stays on
    the client.
servers:
  - url: https://app.italic.com/api/v2
security: []
tags:
  - name: Recordings
  - name: Devices
  - name: API keys
  - name: Webhooks
  - name: Events
paths:
  /devices/{id}/settings:
    get:
      tags:
        - Devices
      summary: Get device settings
      description: 'Required permission: settings:read.'
      operationId: getDeviceSettings
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            minLength: 1
            maxLength: 256
            pattern: ^[A-Za-z0-9][A-Za-z0-9._:-]*$
      responses:
        '200':
          description: >-
            Success. Writes without read permission return an ID and revision
            only.
          headers:
            X-Request-Id:
              schema:
                type: string
              description: Request identifier for troubleshooting.
            ETag:
              schema:
                type: string
              description: Use as If-Match for the next edit.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsResult'
        default:
          description: Request failed. Errors include a stable code and a readable message.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    SettingsResult:
      type: object
      properties:
        settings:
          $ref: '#/components/schemas/DeviceSettings'
      required:
        - settings
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              minLength: 0
              maxLength: 100
            message:
              type: string
              minLength: 0
              maxLength: 1000
          required:
            - code
            - message
          additionalProperties: false
      required:
        - error
    DeviceSettings:
      type: object
      properties:
        inputs:
          type: object
          properties:
            hold:
              type: string
              enum:
                - clip
                - memo
            doubleTap:
              type: string
              enum:
                - clip
                - memo
            tripleTap:
              type: string
              enum:
                - clip
                - memo
            recordButton:
              type: string
              enum:
                - clip
                - memo
            pushToTalk:
              type: string
              enum:
                - clip
                - memo
            appRecord:
              type: string
              enum:
                - clip
                - memo
          required: []
          additionalProperties: false
      required:
        - inputs
      additionalProperties: false
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: An API key from Settings → Integrations.

````