Skip to main content
Version: Latest

Create project from template

Creating a project from a template covers how to create a new video project using an existing template. (It does not involve video composition.)


1. API endpoint

https://app.deepbrain.io/api/odin/v3/editor/template/${templateId}

2. Request parameters

keydesctyperequireddefault
templateIdUnique ObjectId of the template to be usedStringtrue-
aiNameID of the model to be changedStringfalse-
clothIdClothing ID of the model to be changedStringfalse-
nameName of the created projectStringfalse-

3. Response parameters

keydesctype
projectIdID of the created projectString

4. Sample Request

curl https://app.deepbrain.io/api/odin/v3/editor/template/${templateId} \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-G \
-d '{
"model": "M000045058",
"clothes": "BG00002320",
"name" : "New project name"
}'