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

# Get verification task details

> Retrieve details of a verification task using a verification token



## OpenAPI

````yaml GET /verification/{token}
openapi: 3.0.3
info:
  title: UAG Work-Based Learning API
  description: >-
    API for managing work-based learning submissions, authentication, and
    verification
  version: 1.0.0
servers:
  - url: https://wbl.monolisk.dev
    description: Production server
  - url: http://localhost:8787
    description: Development server
security: []
tags:
  - name: Authentication
    description: Authentication and user information endpoints
  - name: Submissions
    description: Work experience submission management
  - name: Verification
    description: Supervisor verification task management
paths:
  /verification/{token}:
    get:
      tags:
        - Verification
      summary: Get verification task details
      description: Retrieve details of a verification task using a verification token
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
          description: Verification task token
      responses:
        '200':
          description: Verification task details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationTaskPayload'
        '400':
          description: Missing or invalid token
        '404':
          description: Task not found
components:
  schemas:
    VerificationTaskPayload:
      type: object
      properties:
        id:
          type: string
        studentEmail:
          type: string
          format: email
        studentFirstname:
          type: string
        studentLastname:
          type: string
        status:
          $ref: '#/components/schemas/VerificationTaskStatus'
        submissions:
          type: array
          items:
            $ref: '#/components/schemas/SerializedWorkExperience'
      required:
        - id
        - studentEmail
        - studentFirstname
        - studentLastname
        - status
        - submissions
    VerificationTaskStatus:
      type: integer
      enum:
        - 0
        - 1
        - 2
      description: 0 = PENDING, 1 = VERIFIED, 2 = REJECTED
    SerializedWorkExperience:
      type: object
      properties:
        kind:
          type: string
          description: Type of work experience
        hours:
          type: integer
          nullable: true
          description: Number of hours worked
        supervisor:
          type: string
          nullable: true
          format: email
          description: Supervisor email address
        dateRange:
          type: object
          nullable: true
          properties:
            start:
              type: string
              format: date
              description: Start date
            end:
              type: string
              format: date
              description: End date
          required:
            - start
            - end
        date:
          type: string
          nullable: true
          format: date
          description: Single date for the experience
        shortResponse:
          type: string
          nullable: true
          description: Brief description of the experience
        longResponse:
          type: string
          nullable: true
          description: Detailed description of the experience
        wasInSchool:
          type: boolean
          nullable: true
          description: Whether the experience was during school time
      required:
        - kind

````