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

# Mimir Export

> Export workflow renders to Mimir and optionally link them to an original Mimir asset.

The Mimir Export tile uploads rendered workflow outputs into the Mimir connection configured for the workflow workspace.

Use it at the end of a workflow after a tile that produces a render, such as Clips, Reframe, Captions, or a final processing step.

## Settings

### Destination

Set `mimir_folder_id` to the destination Mimir folder UUID or folder path.

### File Naming

Leave `file_name` blank to use the default output names:

* `render.mp4` for a single output
* `render.mp4`, `render-1.mp4`, `render-2.mp4`, etc. for multiple outputs

Set `file_name` to override the base filename. For multiple outputs, Mosaic keeps the first filename as provided and adds `-1`, `-2`, etc. to later files.

### Link To Mimir Asset

Enable `link_to_mimir_asset` when the exported render should be linked to an original Mimir asset. Mosaic sends the selected original item id as Mimir `parentItemIds` when creating the exported item.

Provide `mimir_parent_item_id` explicitly, or omit it when the upstream source came from Mimir and Mosaic can infer the original item id from source metadata.

## API Info

<AccordionGroup>
  <Accordion title="Node Params & API Details" icon="code">
    * **Node ID:** `5b2e8a91-8c36-4d3e-93f5-8a36ad4e9e77`

    ### Node params

    | Param                   | Type       | Required | Default | Notes                                                       |
    | ----------------------- | ---------- | -------- | ------- | ----------------------------------------------------------- |
    | `mimir_folder_id`       | `string`   | Yes      | `""`    | Mimir destination folder UUID or folder path.               |
    | `file_name`             | `string`   | No       | `""`    | Optional filename override. Blank uses `render.mp4` naming. |
    | `link_to_mimir_asset`   | `boolean`  | No       | `false` | When true, send `parentItemIds` on Mimir item creation.     |
    | `mimir_parent_item_id`  | `string`   | No       | `""`    | Original Mimir item id to send as `parentItemIds[0]`.       |
    | `mimir_parent_item_ids` | `string[]` | No       | `[]`    | Advanced API option for multiple parent item ids.           |

    ### Example

    ```json theme={null}
    {
      "mimir_folder_id": "8c5d9360-f7a6-4d28-8a63-1c6c5fdc1791",
      "file_name": "render.mp4",
      "link_to_mimir_asset": true,
      "mimir_parent_item_id": "OG_MIMIR_ASSET_ID"
    }
    ```

    When `link_to_mimir_asset` is true, Mosaic creates the Mimir item with:

    ```json theme={null}
    {
      "parentItemIds": ["OG_MIMIR_ASSET_ID"]
    }
    ```
  </Accordion>
</AccordionGroup>
