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

# Get Organization Integrations Endpoint

> Get all integration statuses for the given organization.

Returns a comprehensive overview of all integrations configured for the organization,
including:
- OAuth-based integrations (Slack, Linear, Notion, Figma, ClickUp, Jira, Sentry, Monday.com)
- GitHub app installations
- API key-based integrations (CircleCI)
- Database connections (PostgreSQL)

Each integration includes its current status (active/inactive), associated token/installation IDs,
and relevant metadata such as app names, organization names, etc.

Rate limit: 60 requests per 30 seconds.



## OpenAPI

````yaml api-reference/openapi3.json get /v1/organizations/{org_id}/integrations
openapi: 3.1.0
info:
  title: Developer API
  description: API for application developers
  version: 1.0.0
servers:
  - url: https://api.codegen.com
    description: Codegen API
security: []
paths:
  /v1/organizations/{org_id}/integrations:
    get:
      tags:
        - integrations
        - integrations
        - integrations
      summary: Get Organization Integrations Endpoint
      description: >-
        Get all integration statuses for the given organization.


        Returns a comprehensive overview of all integrations configured for the
        organization,

        including:

        - OAuth-based integrations (Slack, Linear, Notion, Figma, ClickUp, Jira,
        Sentry, Monday.com)

        - GitHub app installations

        - API key-based integrations (CircleCI)

        - Database connections (PostgreSQL)


        Each integration includes its current status (active/inactive),
        associated token/installation IDs,

        and relevant metadata such as app names, organization names, etc.


        Rate limit: 60 requests per 30 seconds.
      operationId: >-
        get_organization_integrations_endpoint_v1_organizations__org_id__integrations_get
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: integer
            title: Org Id
        - name: authorization
          in: header
          required: false
          schema:
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationIntegrationsResponse'
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionsErrorResponse'
          description: Forbidden
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIRateLimitErrorResponse'
          description: Too Many Requests
components:
  schemas:
    OrganizationIntegrationsResponse:
      properties:
        organization_id:
          type: integer
          title: Organization Id
          description: ID of the organization
        organization_name:
          type: string
          title: Organization Name
          description: Name of the organization
        integrations:
          items:
            $ref: '#/components/schemas/IntegrationStatus'
          type: array
          title: Integrations
          description: List of integration statuses
        total_active_integrations:
          type: integer
          title: Total Active Integrations
          description: Total number of active integrations
      type: object
      required:
        - organization_id
        - organization_name
        - integrations
        - total_active_integrations
      title: OrganizationIntegrationsResponse
      description: Response schema for organization integrations.
    PermissionsErrorResponse:
      properties:
        message:
          type: string
          title: Message
          default: You do not have access to this organization.
        status_code:
          type: integer
          title: Status Code
          default: 403
      type: object
      title: PermissionsErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    APIRateLimitErrorResponse:
      properties:
        message:
          type: string
          title: Message
          default: Rate limit exceeded. Please try again later.
        status_code:
          type: integer
          title: Status Code
          default: 429
      type: object
      title: APIRateLimitErrorResponse
    IntegrationStatus:
      properties:
        integration_type:
          type: string
          title: Integration Type
          description: Type of integration (e.g., 'github', 'slack', 'linear', etc.)
        active:
          type: boolean
          title: Active
          description: Whether the integration is currently active
        token_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Token Id
          description: ID of the associated token, if any
        installation_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Installation Id
          description: ID of the app installation, if applicable
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
          description: Additional metadata about the integration
      type: object
      required:
        - integration_type
        - active
      title: IntegrationStatus
      description: Status information for a single integration.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````