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

# Upload-Status prüfen

> Prüft den aktuellen Status eines Uploads



## OpenAPI

````yaml /de/api-reference/openapi.json head /start-scan/{transfer_id}
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:
  /start-scan/{transfer_id}:
    head:
      tags:
        - Corgea-Scan starten
      summary: Upload-Status prüfen
      description: Prüft den aktuellen Status eines Uploads
      operationId: checkUploadStatus
      parameters:
        - name: transfer_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Zu prüfende Transfer-ID
      responses:
        '200':
          description: Upload-Status abgerufen
          headers:
            Upload-Offset:
              schema:
                type: integer
              description: Aktueller Upload-Offset
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                      - error
                    example: success
                  message:
                    type: string
                    example: Offset calculated
        '400':
          description: Ungültige Transfer-ID
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: error
                  message:
                    type: string
                    example: Invalid transfer ID.
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

````