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

# Get Company Integrations

> This endpoint serves the purpose of fetching company integrations.



## OpenAPI

````yaml api-reference/v01.12.00/openapi-v01.12.00.json GET /company/integrations
openapi: 3.0.0
info:
  title: Roosted
  version: 0.1.12
  contact:
    name: Support
    url: https://support.roostedhr.com/support/home
    email: support@roostedhr.com
  description: |-
    Enterprise API

    Sandbox keys and Production keys are requested from support
servers:
  - url: https://api.roostedhr.com/api/1_12
  - url: https://sandbox.roostedhr.com/api/1_12
security:
  - X-API-KEY: []
tags:
  - name: Announcements
  - name: Areas
  - name: Clients
  - name: Company
  - name: Configuration
  - name: Events
  - name: Locations
  - name: Payroll Groups
  - name: Rate Cards
  - name: Shifts
  - name: Skillsets
  - name: Time Tracking
  - name: Wage Rules
  - name: Workers
paths:
  /company/integrations:
    get:
      tags:
        - Company
      summary: Get Company Integrations
      description: This endpoint serves the purpose of fetching company integrations.
      operationId: get-company-integrations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompanyIntegration'
              examples:
                Fetched Integrations:
                  value:
                    - id: 1
                      name: QuickBooks
                      description: Sync payroll data with QuickBooks Online
                      one_liner: Payroll integration with QuickBooks
                      url: https://quickbooks.intuit.com
                      icon_url: https://example.com/icons/quickbooks.png
                      category: payroll
                      setup_instructions: Connect your QuickBooks account via OAuth.
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid integration configuration:
                  value:
                    code: CMP-900
                    error: Invalid integration configuration
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid API key:
                  value:
                    code: ATH-100
                    error: Invalid or missing API key
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Insufficient permissions:
                  value:
                    code: CMP-1000
                    error: Insufficient permissions to manage company settings
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Not found:
                  value:
                    code: CMP-600
                    error: Document not found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Unexpected error:
                  value:
                    code: CMP-1100
                    error: An unexpected error occurred
components:
  schemas:
    CompanyIntegration:
      title: CompanyIntegration
      type: object
      properties:
        id:
          type: integer
          description: Unique integration identifier
        name:
          type: string
          description: Integration name
        description:
          type: string
          description: Detailed description of the integration
        one_liner:
          type: string
          description: Short one-line summary of the integration
        url:
          type: string
          description: Integration website or documentation URL
        icon_url:
          type: string
          description: URL to the integration's icon image
        category:
          type: string
          description: Integration category (e.g. payroll, communication)
        setup_instructions:
          type: string
          description: Instructions for setting up the integration
  securitySchemes:
    X-API-KEY:
      name: X-API-KEY
      type: apiKey
      in: header

````