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

# Get Phones

> Fetch one `phone` by id, workspace-scoped. Returns 404 when the id is outside the caller's workspace.



## OpenAPI

````yaml GET /v1/phones/{id}
openapi: 3.1.0
info:
  title: Well Document API
  version: 1.0.0
  description: API for uploading and managing financial documents in the Well platform
servers:
  - url: https://api.wellapp.ai
security: []
paths:
  /v1/phones/{id}:
    get:
      tags:
        - Records read endpoints
      summary: Get phone
      description: >-
        Fetch one `phone` by id, workspace-scoped. Returns 404 when the id is
        outside the caller's workspace.
      operationId: getPhones
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: workspaceId
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The phone record.
          content:
            application/json:
              example:
                data:
                  type: phone
                  id: uuid
                  attributes: {}
        '404':
          description: phone not found / not in workspace scope.

````