Delete Scene
1. API endpoint
https://v2.aistudios.com/api/odin/editor/scene/${key}
2. Request parameter
key | desc | type | required | default |
---|---|---|---|---|
sceneIdx | Index of scene to delete | Int | true | - |
3. Response parameters
key | desc | type |
---|---|---|
success | Progress on Request Success | Boolean |
cube_used | Number of Cubes used | Int |
key | Project ID | String |
4. Sample Request
- cURL
- Node.js
- Python
curl https://v2.aistudios.com/api/odin/editor/scene/${project key} \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X DELETE \
-d '{
"sceneIdx": 0
}'
import axios from "axios"
const token = ${API KEY}
axios.delete('https://v2.aistudios.com/api/odin/editor/scene/${project key}',
{
"sceneIdx": 0
},
{
headers: {
'Authorization': ${token},
'Content-Type': 'application/json'
}
}
)
.then((res) => {
console.log(res.data)
})
.catch((error) => {
console.error(error)
})
import requests
import json
url = "https://v2.aistudios.com/api/odin/editor/scene/${project key}"
body = {
"sceneIdx": 0
}
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.delete(url, data=json.dumps(body), headers=headers)