cURL
curl --request DELETE \ --url https://spideriq.ai/api/v1/media/files \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "keys": [ {} ] } '
{ "success": true, "deleted": ["logos/old-logo.png", "images/temp.jpg"], "failed": [] }
Delete files from your client-specific SeaweedFS bucket
curl -X DELETE "https://spideriq.ai/api/v1/media/files" \ -H "Authorization: Bearer cli_abc123:sk_xxx:secret_xxx" \ -H "Content-Type: application/json" \ -d '{"keys": ["logos/old-logo.png", "images/temp.jpg"]}'