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

# Move Video

> Move a video to another collection

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

Move a video to another collection. Same embedding model → `200` (synchronous). Cross-model → `409` (not allowed).

<Note>
  **Custom method `:move`** — this is an action on the resource, not standard CRUD. Call it exactly as `POST /datalake/v1/videos/{id}:move`.
</Note>

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

## Response Fields

<ResponseField name="collection_id" type="string">New parent collection.</ResponseField>


## OpenAPI

````yaml POST /datalake/v1/videos/{id}:move
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}:move:
    post:
      tags:
        - Videos — Manage
      summary: Move a video to another collection
      description: >-
        Move a video to another collection. Same embedding model → `200`
        (synchronous). Cross-model → `409` (not allowed).
      operationId: move_video
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Video ID.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                collection_id:
                  type: string
                  description: Target collection (must share the embedding model).
              required:
                - collection_id
              example:
                collection_id: col_target
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                video_id: vid_xxx
                collection_id: col_target
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````