Generate working file path
Generate a working file path from file tree template based on task parameters. Revision can be computed automatically if not provided.
POST
/data/tasks/{task_id}/working-file-path
curl \
--request POST 'http://api.example.com/data/tasks/a24a6ea4-ce75-4665-a070-57453082c25/working-file-path' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{"name":"main","mode":"working","software_id":"a24a6ea4-ce75-4665-a070-57453082c25","comment":"Updated lighting","revision":1,"separator":"/"}'
Request examples
{
"name": "main",
"mode": "working",
"software_id": "a24a6ea4-ce75-4665-a070-57453082c25",
"comment": "Updated lighting",
"revision": 1,
"separator": "/"
}
Response examples (200)
{
"path": "/project/asset/working/main_v001.blend",
"name": "main_v001.blend"
}