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

# PayID OAuth callback

> Handles the redirect back from PayID OAuth provider.



## OpenAPI

````yaml /api-reference/openapi.json get /callback/payid
openapi: 3.1.0
info:
  title: Monitor Platform API
  version: 1.0.0
  summary: >-
    Programmatic API for uptime monitoring, incidents, alerting, organization
    management, and auth.
  description: >-
    This document covers the public `/api/v1` surface exposed by the Monitor
    platform. Organization resource routes support either the `auth-token`
    session cookie or an organization-scoped API key where documented.
servers:
  - url: https://monitor.aevr.space
    description: Current environment
security: []
tags:
  - name: Auth
    description: User registration and authentication flows.
  - name: Organizations
    description: Organization discovery and switching.
  - name: Monitors
    description: Uptime monitor CRUD and manual checks.
  - name: Incidents
    description: Incident history for an organization.
  - name: Alert Channels
    description: Notification channel management.
  - name: Members
    description: Organization membership management.
  - name: Status Page
    description: Public status page configuration.
  - name: Invites
    description: Organization invite token access.
  - name: API Keys
    description: Organization API key lifecycle management.
  - name: User
    description: Referral and user-specific resources.
  - name: PayID
    description: PayID OAuth and KYC integration routes.
  - name: System
    description: Internal system automation and error reporting.
paths:
  /callback/payid:
    get:
      tags:
        - Auth
        - PayID
      summary: PayID OAuth callback
      description: Handles the redirect back from PayID OAuth provider.
      parameters:
        - in: query
          name: code
          required: true
          schema:
            type: string
        - in: query
          name: state
          required: true
          schema:
            type: string
      responses:
        '302':
          description: Redirects to dashboard on success or error page on failure.

````