Endpoint
string
required
Your API key.
Path Parameters
string
required
UUID of the user-created scene to archive.
Example Request
Response
200 — Success
string
Always
archived on a successful delete.Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
DELETE /scenes/ — soft-delete (archive) a user-created estudjo scene. Archived scenes cannot be used in generations and cannot be restored.
DELETE https://v1.api.estudjo.com/scenes/{scene_id}
curl -X DELETE https://v1.api.estudjo.com/scenes/7c1e2f4a-9b3d-4e5f-8a6b-1c2d3e4f5a6b \
-H 'X-Api-Key: YOUR_API_KEY'
{ "success": true, "data": { "status": "archived" } }
archived on a successful delete.| Endpoint | Behaviour after archiving |
|---|---|
GET /scenes | Scene no longer appears in results. |
GET /scenes/{scene_id} | Returns 404 not_found. |
POST /generate (with this scene_id) | Returns not_found. |
PUT /scenes/{scene_id} | Returns 404 not_found. |
| Code | HTTP | Cause |
|---|---|---|
not_found | 404 | The scene doesn’t exist, belongs to another account, is predefined, is already archived, or scene_id is not a valid UUID. All cases are intentionally indistinguishable. |