> ## Documentation Index
> Fetch the complete documentation index at: https://api-tools.memories.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Video

> Update video metadata

<Info>
  **Product**: Video Datalake
  **Host**: `https://api.memories.ai/datalake/v1`
  **Auth**: `Authorization: sk-mai-...`
</Info>

Change `metadata` (merge semantics), `captured_at`, or `location`. `collection_id` is immutable here — use [Move Video](/datalake/videos/move-video). `fps` and `status` cannot be changed.

<Note>
  **Pricing:** Free — management / read (no charge). · See [Pricing](/datalake/pricing) for the full model.
</Note>

## Response Fields

<ResponseField name="video_id" type="string">Video ID.</ResponseField>


## OpenAPI

````yaml PATCH /datalake/v1/videos/{id}
openapi: 3.1.0
info:
  title: Memories.ai DataLake API 2.0
  version: 2026-08
  description: OpenAPI mapping used by Mintlify Try it for the DataLake API 2.0 docs.
servers:
  - url: https://api.memories.ai
security:
  - ApiKeyAuth: []
paths:
  /datalake/v1/videos/{id}:
    patch:
      tags:
        - Videos — Manage
      summary: Update video metadata
      description: >-
        Change `metadata` (merge semantics), `captured_at`, or `location`.
        `collection_id` is immutable here — use [Move
        Video](/datalake/videos/move-video). `fps` and `status` cannot be
        changed.
      operationId: update_video
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Video ID.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                metadata:
                  type: object
                captured_at:
                  type: string
                location:
                  type: object
                  properties:
                    lat:
                      type: number
                    lng:
                      type: number
              example:
                metadata:
                  tags:
                    - reviewed
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                video_id: vid_xxx
                metadata:
                  tags:
                    - reviewed
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````