> ## 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 Company Integrations

> Return a flat object of integration name → display label for the authenticated company. Includes generic CompanyIntegration rows, telephony providers (Twilio/Vonage/Telnyx), GoHighLevel, and Meta when present.



## OpenAPI

````yaml GET /settings/integration/
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/integration/:
    get:
      tags:
        - settings
      summary: List Company Integrations
      description: >-
        Return a flat object of integration name → display label for the
        authenticated company. Includes generic CompanyIntegration rows,
        telephony providers (Twilio/Vonage/Telnyx), GoHighLevel, and Meta when
        present.
      operationId: settings_integration_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: >-
            Integration label map. Keys vary by what the company has connected
            (e.g. `openai`, `twilio`, `gohighlevel`, `meta`); values are the
            human-readable names/labels.
      security:
        - jwtAuth: []
components:
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````