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

# Get Account Settings

> Return the authenticated user's profile (name, email, phone, currently selected company UUID).



## OpenAPI

````yaml GET /settings/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /settings/:
    get:
      tags:
        - settings
      summary: Get Account
      description: >-
        Return the authenticated user's profile (name, email, phone, currently
        selected company UUID).
      operationId: settings_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountResponse'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    AccountResponse:
      type: object
      properties:
        full_name:
          type: string
        email:
          type: string
          format: email
        phone_number:
          type: string
          nullable: true
        company:
          type: string
          format: uuid
          nullable: true
      required:
        - company
        - email
        - full_name
        - phone_number
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````