Skip to main content
Version: Latest

Delete project

If you enter the project ID verified through the Get projects inquiry, you can safely delete the project.


1. API Endpoint

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

2. Request Parameters

keydesctyperequireddefault
idsArray of unique identifiers for video projects to deleteObjecttrue-

3. Response Parameters

keydesctype
deletedCountDeleted CountInt

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}"
]
}'