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

# Mark video as handled

> Marks a video as handled by its ID



## OpenAPI

````yaml /api-reference/oda-media-service-1.0.0.yml patch /media/video/{id}
openapi: 3.0.1
info:
  title: oda-media-service
  version: 1.0.0
servers: []
security: []
tags:
  - name: Available Media
    description: Search and retrieve available media from external providers
  - name: Video
    description: Video management operations
  - name: Playlist
    description: Playlist management operations
paths:
  /media/video/{id}:
    patch:
      tags:
        - Video
      summary: Mark video as handled
      description: Marks a video as handled by its ID
      operationId: update
      parameters:
        - name: id
          in: path
          description: Video ID to mark as handled
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Video marked as handled

````