save
Syntax

Dossier.save();
Parameters
Return value
The save() method does not return a value.
Description
The save() method saves the Dossier object to Studio Server. If the Dossier does not yet exist on Studio Server, it is created first.
Examples
Update the name of an existing dossier and save it
// Retrieve a dossier, update its name, then save it.
var dossier = app.dossiers.retrieve("456");
dossier.entMetaData.set("Core_Name", "Updated Dossier Name");
dossier.save();
Supported versions
| Adobe Version | Supported |
|---|---|
| 2023 | ✔ |
| 2024 | ✔ |
| 2025 | ✔ |
| 2026 | ✔ |