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

# Get Company Settings

> Retrieve company settings including staff and pending invites



## OpenAPI

````yaml GET /settings/company
openapi: 3.1.0
info:
  title: Aidan API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.callaidan.com
security: []
tags:
  - name: Webhooks
    description: >-
      **Inbound notifications.** After a voice call ends, Aidan POSTs JSON to
      the Webhook URL on your agent (Voice Agents settings or `webhook_url`).
      Your server receives these requests — they are not calls *to*
      `api.callaidan.com`. The documented path `/_reference/webhooks/...` exists
      only in this spec so the payload schema can appear in the API Reference;
      it is not callable on the production API.
paths:
  /settings/company:
    get:
      summary: Get Company Settings
      description: Retrieve company settings including staff and pending invites
      responses:
        '200':
          description: Company settings retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanySettings'
        '401':
          description: Unauthorized - Invalid or missing API key
      security:
        - CompanyApiKey: []
components:
  schemas:
    CompanySettings:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        email:
          type: string
        logo:
          type: string
          nullable: true
          description: Logo URL, null if not set
        address:
          type: object
          properties:
            address:
              type: string
            city:
              type: string
            state:
              type: string
            country:
              type: string
            zip_code:
              type: string
        api_key:
          type: string
        staff:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              full_name:
                type: string
              email:
                type: string
              role:
                type: integer
                minimum: 1
                maximum: 4
        invites:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              email:
                type: string
              role:
                type: integer
                minimum: 1
                maximum: 4
  securitySchemes:
    CompanyApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: Company API Key

````