Duplicate Project
1. API endpoint
https://v2.aistudios.com/api/odin/editor/project/duplicate/${key}
2. Response parameters
key | desc | type |
---|---|---|
success | Progress on Request Success | Boolean |
projectData | Project data | Json |
3. Sample Request
- cURL
- Node.js
- Python
curl https://v2.aistudios.com/api/odin/editor/project/duplicate/${project key} \
-H "Authorization: ${API KEY}" \
-H "Content-Type: application/json" \
-X POST \
-d '{}'
import axios from "axios"
const token = ${API KEY}
axios.post('https://v2.aistudios.com/api/odin/editor/project/duplicate/${project key}',
{},
{
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/project/duplicate/${project key}"
body = {}
headers = {
"Content-Type": "application/json",
"Authorization": ${API TOKEN}
}
r = requests.post(url, data=json.dumps(body), headers=headers)