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

# Get Customer

> Returns a single customer record scoped to the authenticated organization.



## OpenAPI

````yaml GET /v1/customers/{id}
openapi: 3.1.0
info:
  title: Voxfra Management API
  description: >
    Tenant-facing REST API for integrating with Voxfra's voice intelligence
    infrastructure.

    Use this API to read call data, manage clients, and build partner
    dashboards.


    ## Authentication


    All endpoints except `GET /health` require an API key passed in the
    `X-API-Key` header.

    API keys are scoped to a single organization — all responses are
    automatically filtered to your org.


    Keys are issued by your Voxfra account manager or via the Voxfra admin
    console.
  version: 1.0.0
  contact:
    name: Voxfra Support
    email: support@voxfra.com
  license:
    name: Proprietary
    url: https://voxfra.com/terms
servers:
  - url: https://mgmt-api.voxfra.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Health
    description: System status
  - name: Auth
    description: Verify and inspect the current API key
  - name: Clients
    description: >-
      Read and provision clients (dealerships, clinics, etc.) within your
      organization
  - name: Calls
    description: Access call records ingested through voxfra
  - name: Customers
    description: >-
      Access tenant-scoped customer records deduplicated within organization and
      client boundaries
paths:
  /v1/customers/{id}:
    get:
      tags:
        - Customers
      summary: Get a customer
      description: >-
        Returns a single customer record scoped to the authenticated
        organization.
      operationId: getCustomer
      parameters:
        - name: id
          in: path
          required: true
          description: Customer UUID
          schema:
            type: string
            format: uuid
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
      responses:
        '200':
          description: Customer record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerDetailResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Customer not found or does not belong to this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Customer not found
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    CustomerDetailResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Customer'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
    Customer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        organization_id:
          type: string
          format: uuid
        client_id:
          type: string
          format: uuid
        phone_number:
          type: string
        first_name:
          type:
            - string
            - 'null'
        last_name:
          type:
            - string
            - 'null'
        full_name:
          type:
            - string
            - 'null'
        email:
          type:
            - string
            - 'null'
          format: email
        customer_status:
          type:
            - string
            - 'null'
          enum:
            - new
            - returning
            - unknown
            - null
        created_from_call_id:
          type:
            - string
            - 'null'
          format: uuid
        first_call_id:
          type:
            - string
            - 'null'
          format: uuid
        first_call_at:
          type:
            - string
            - 'null'
          format: date-time
        last_call_id:
          type:
            - string
            - 'null'
          format: uuid
        last_call_at:
          type:
            - string
            - 'null'
          format: date-time
        total_calls:
          type: integer
        metadata:
          type: object
          additionalProperties: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Unauthorized
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Internal Server Error
            message: Unexpected error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Your Voxfra management API key. Passed as a request header.

        Format: `vox_mgmt_<random>`

````