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

프로젝트 삭제

프로젝트 목록 조회를 통해 확인한 프로젝트 ID를 입력하시면, 해당 프로젝트를 안전하게 삭제하실 수 있습니다.


1. API Endpoint

https://app.aistudios.com/api/odin/v3/editor/project

2. Request Parameters

keydesctyperequireddefault
ids삭제할 비디오 프로젝트의 고유 식별자 배열Objecttrue-

3. Response Parameters

keydesctype
deletedCount삭제 카운트Int

4. Sample Request

curl https://app.aistudios.com/api/odin/v3/editor/project  \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X DELETE
-d '{
"ids": [
"${projectId}"
]
}'