Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE "https://api.voyantcloud.com/v1/gallery/files/gal_file_123" \ -H "Authorization: Bearer $VOYANT_API_KEY"
await fetch("https://api.voyantcloud.com/v1/gallery/files/gal_file_123", { method: "DELETE", headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` }, })
import os, requests resp = requests.delete( "https://api.voyantcloud.com/v1/gallery/files/gal_file_123", headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"}, ) payload = resp.json()
{ "message": "File deletion scheduled", "status": "scheduled", "fileId": "gal_file_123" }
Schedule deletion of a gallery file (asynchronous cleanup).
DELETE
/v1/gallery/files/:id
Authorization: Bearer YOUR_API_KEY
status: deleting
gallery.file.deleted