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

# List integration providers



## OpenAPI

````yaml https://api.contracting.kukkingu.software/api/v1/docs.json get /api/v1/integrations/providers
openapi: 3.1.0
info:
  title: Contracting Backend API
  version: 0.1.0
  description: API documentation for the Contracting backend service.
servers:
  - url: https://api.contracting.kukkingu.software
    description: API server
security:
  - bearerAuth: []
paths:
  /api/v1/integrations/providers:
    get:
      tags:
        - Integrations
      summary: List integration providers
      parameters:
        - schema:
            type: string
            example: tnt_pfh0haxfpzowht3oi213cqos
            description: >-
              Specifies the tenant context for the request. All endpoints
              operate within this tenant scope.
          in: header
          name: tenant-id
          required: true
          description: >-
            Specifies the tenant context for the request. All endpoints operate
            within this tenant scope.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        provider:
                          type: string
                          enum:
                            - google-drive
                            - gmail
                            - jira
                          description: Integration provider.
                        displayName:
                          type: string
                          minLength: 1
                        description:
                          type: string
                          minLength: 1
                        authType:
                          type: string
                          enum:
                            - api-key
                            - oauth2
                        subscriptionEvents:
                          type: array
                          items:
                            type: string
                            enum:
                              - invoice.created
                              - invoice.saved
                              - invoice.deleted
                            description: Domain event type handled by integrations.
                      required:
                        - provider
                        - displayName
                        - description
                        - authType
                        - subscriptionEvents
                      additionalProperties: false
                      description: Metadata describing an available integration provider.
                required:
                  - data
                additionalProperties: false
                description: Standard success response payload wrapped in a data property.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````