본문으로 건너뛰기
버전: 최신 버전

템플릿에서 프로젝트 생성

템플릿에서 프로젝트를 생성하는 것은 기존 템플릿을 사용하여 새로운 비디오 프로젝트를 생성하는 방법을 다룹니다. (비디오 합성은 포함하지 않습니다.)


1. API endpoint

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

2. Request parameters

keydesctyperequireddefault
templateId사용할 템플릿의 고유 ObjectIdStringtrue-
aiName변경할 모델의 IDStringfalse-
clothId변경할 모델의 복장 IDStringfalse-
name생성된 프로젝트의 이름Stringfalse-

3. Response parameters

keydesctype
projectId생성된 프로젝트의 IDString

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" : "새 프로젝트 이름"
}'
```