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

# Token überprüfen (veraltet)



## OpenAPI

````yaml /de/api-reference/openapi.json get /verify/{token}
openapi: 3.0.0
info:
  title: Corgea API
  version: 1.0.0
  description: >-
    API für die Interaktion mit den Scan- und
    Schwachstellenmanagement-Funktionen von Corgea
servers:
  - url: https://www.corgea.app/api/v1
    description: Produktionsserver
security:
  - CorgeaToken: []
  - BearerAuth: []
paths:
  /verify/{token}:
    get:
      tags:
        - Authentifizierung
      summary: Token überprüfen (veraltet)
      operationId: verifyTokenDeprecated
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
          description: Das zu überprüfende Token
      responses:
        '200':
          description: Token ist gültig
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: ok
        '400':
          description: Ungültiges Token
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: error
      deprecated: true
      security: []
components:
  securitySchemes:
    CorgeaToken:
      type: apiKey
      in: header
      name: CORGEA-TOKEN
      description: API-Key für die Authentifizierung
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth2-Access-Token (JWT) im Authorization-Header

````