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

# List integration types



## OpenAPI

````yaml /api/openapi.yaml get /api/v1/integration-types
openapi: 3.1.0
info:
  title: OpenCluster Control Plane API
  version: 0.1.0
  description: HTTP contract for the OpenCluster product API and inbound webhook endpoints.
  license:
    name: Apache-2.0
servers:
  - url: http://localhost:8080
    description: Local self-hosted deployment
security: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Members
  - name: Sessions
  - name: Policy
  - name: Audit
  - name: Integration Types
  - name: Integrations
  - name: Relays
  - name: Incidents
  - name: Investigations
  - name: Conversations
  - name: Postmortems
  - name: Webhook Deliveries
  - name: Webhook Intake
  - name: Metadata
paths:
  /api/v1/integration-types:
    get:
      tags:
        - Integration Types
      summary: List integration types
      operationId: listIntegrationTypes
      parameters:
        - $ref: '#/components/parameters/Organization'
      responses:
        '200':
          $ref: '#/components/responses/IntegrationTypeList'
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - SessionCookie: []
components:
  parameters:
    Organization:
      name: X-OpenCluster-Organization
      in: header
      required: true
      description: Selects the Organization whose data and membership are authorized.
      schema:
        $ref: '#/components/schemas/OrganizationID'
      example: acme-production
  responses:
    IntegrationTypeList:
      description: Integration Types served by this build.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IntegrationTypeList'
    ErrorResponse:
      description: The operation did not complete.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    OrganizationID:
      type: string
      pattern: ^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$
      minLength: 1
      maxLength: 63
    IntegrationTypeList:
      type: object
      additionalProperties: false
      required:
        - types
      properties:
        types:
          type: array
          items:
            $ref: '#/components/schemas/IntegrationType'
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
          minLength: 1
          maxLength: 1024
          example: the selected Organization is not available to this caller
        reason:
          type: string
          enum:
            - credential_rejected
            - session_expired
            - session_revoked
        requires:
          type: string
          minLength: 1
          maxLength: 128
    IntegrationType:
      type: object
      additionalProperties: false
      required:
        - key
        - name
        - description
        - category
        - available
        - capabilities
        - secretFields
        - documentationSlug
        - requiresRelay
        - receivesWebhooks
        - supportsConnect
        - configurationSchema
        - configured
      properties:
        key:
          type: string
          pattern: ^[a-z][a-z0-9_]{0,63}$
        name:
          type: string
          minLength: 1
          maxLength: 128
        description:
          type: string
          minLength: 1
          maxLength: 1024
        logo:
          type: string
          maxLength: 128
        category:
          type: string
          enum:
            - alerting
            - infrastructure
            - collaboration
            - source-control
        available:
          type: boolean
        capabilities:
          type: array
          items:
            type: string
            minLength: 1
            maxLength: 128
          uniqueItems: true
        secretFields:
          type: array
          items:
            type: string
            minLength: 1
            maxLength: 128
          uniqueItems: true
        documentationSlug:
          type: string
          pattern: ^integrations/[a-z-]+/[a-z][a-z0-9_]{0,63}$
        documentationUrl:
          type: string
          format: uri
        productDocumentationUrl:
          type: string
          format: uri-reference
        requiresRelay:
          type: boolean
        receivesWebhooks:
          type: boolean
        supportsConnect:
          type: boolean
        configurationSchema:
          type: object
          additionalProperties: true
        tools:
          type: array
          items:
            type: object
            additionalProperties: true
        configured:
          type: integer
          minimum: 0
  securitySchemes:
    SessionCookie:
      type: apiKey
      in: cookie
      name: __Host-oc_session

````