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

# Regenerate the downloadable MP4

> Regenerates the recording's downloadable MP4 when it is out of date. Call this after a screenshot request returns `is_screenshot_ready: false`, then retry the screenshot once the status is `ready`.

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled/recordings.yaml POST /recordings/{id}/trigger-mp4
openapi: 3.0.3
info:
  title: NeetoRecord Recordings APIs
  version: 2.0.0
servers:
  - description: NeetoRecord APIs
    url: https://{your-subdomain}.neetorecord.com/api/external/v2
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Recordings
    description: APIs to retrieve and manage recordings in your workspace.
paths:
  /recordings/{id}/trigger-mp4:
    post:
      tags:
        - Recordings
      summary: Regenerate the downloadable MP4
      description: >-
        Regenerates the recording's downloadable MP4 when it is out of date.
        Call this after a screenshot request returns `is_screenshot_ready:
        false`, then retry the screenshot once the status is `ready`.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - $ref: '#/components/parameters/accept_header'
        - $ref: '#/components/parameters/recording_id_param'
      responses:
        '200':
          description: Regeneration status for the recording.
          content:
            application/json:
              schema:
                type: object
                required:
                  - recording_id
                  - status
                properties:
                  recording_id:
                    type: string
                  status:
                    type: string
                    enum:
                      - ready
                      - generating
                      - already_generating
                    description: >-
                      `ready` when the MP4 is already up to date, `generating`
                      when regeneration has just been queued, and
                      `already_generating` when a conversion is in progress.
              example:
                recording_id: x9y8z7w6v5u4t3s2
                status: generating
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        API key. Refer to [Authentication](/getting-started/authentication) for
        more information.
      required: true
      schema:
        type: string
    accept_header:
      in: header
      name: Accept
      description: Must be `application/json`.
      required: true
      schema:
        type: string
        enum:
          - application/json
        default: application/json
    recording_id_param:
      in: path
      name: id
      required: true
      description: >-
        The recording's `id` (UUID) or its `public_link_id` (the short code in
        the watch URL). Both are accepted.
      schema:
        type: string

````