> ## 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.

# Complete integration OAuth callback

> Returns a non-cacheable HTML page that notifies the trusted popup opener and closes itself.



## OpenAPI

````yaml https://api.contracting.kukkingu.software/api/v1/docs.json get /api/v1/integrations/oauth/callback
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/oauth/callback:
    get:
      tags:
        - Integrations
      summary: Complete integration OAuth callback
      description: >-
        Returns a non-cacheable HTML page that notifies the trusted popup opener
        and closes itself.
      parameters:
        - schema: {}
          in: query
          name: state
        - schema: {}
          in: query
          name: code
        - schema: {}
          in: query
          name: error
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````