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

# Customer Details

> Retrieve the details of a specific customer.



## OpenAPI

````yaml openapi.json get /customer/{id}
openapi: 3.0.0
info:
  title: AuxVault API
  description: >-
    The AuxVault API is a RESTful API that allows you to process financial
    transactions, manage customers, and access transaction data securely.
  version: v1
servers:
  - url: https://dev-api.auxvault.net/api/v1/public
    description: Sandbox Environment
  - url: https://api.auxvault.net/api/v1/public
    description: Production Environment
security:
  - apiKey: []
paths:
  /customer/{id}:
    get:
      summary: Customer Details
      description: Retrieve the details of a specific customer.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              example:
                status_code: 200
                message: Customer Details found successfully
                data:
                  CustomerId: cust_123
                  CustomerName: John Doe
                  Email: john.doe@example.com
                  PhoneNumber: 555-123-4567
                  CountryId: 1
                  CountryCode: '+1'
                  Address: 123 Main St
                  City: Anytown
                  PostalCode: '12345'
                  StateId: 12
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                status: failed
                status_code: 401
                msg: 'Unauthorized: Invalid API Key'
        '404':
          description: Not Found
          content:
            application/json:
              example:
                status: failed
                status_code: 404
                msg: Customer not found
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````