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

# Update verification task status

> Update the status of a verification task (verify or reject)



## OpenAPI

````yaml PUT /verification/{token}/status
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}/status:
    put:
      tags:
        - Verification
      summary: Update verification task status
      description: Update the status of a verification task (verify or reject)
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
          description: Verification task token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  $ref: '#/components/schemas/VerificationTaskStatus'
              required:
                - status
      responses:
        '204':
          description: Status updated successfully
        '400':
          description: Missing token, invalid status, or task already completed
        '404':
          description: Verification task not found
components:
  schemas:
    VerificationTaskStatus:
      type: integer
      enum:
        - 0
        - 1
        - 2
      description: 0 = PENDING, 1 = VERIFIED, 2 = REJECTED

````