> ## Documentation Index
> Fetch the complete documentation index at: https://veridical-dev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Complete Integration Oauth



## OpenAPI

````yaml /openapi.json get /api/v1/integrations/oauth/callback
openapi: 3.1.0
info:
  title: Veridical API
  version: 1.0.0
servers:
  - url: https://api.veridical.dev
security: []
paths:
  /api/v1/integrations/oauth/callback:
    get:
      tags:
        - control
      summary: Complete Integration Oauth
      operationId: complete_integration_oauth_api_v1_integrations_oauth_callback_get
      parameters:
        - in: query
          name: code
          required: true
          schema:
            maxLength: 4096
            minLength: 1
            title: Code
            type: string
        - in: query
          name: state
          required: true
          schema:
            maxLength: 512
            minLength: 32
            title: State
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: >-
                  Response Complete Integration Oauth Api V1 Integrations Oauth
                  Callback Get
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - BearerAuth: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http

````