Skip to main content
DELETE
/
{bucketName}
/
{*path}
Delete Object
curl --request DELETE \
  --url https://cdn.sacul.cloud/{bucketName}/{*path}

Documentation Index

Fetch the complete documentation index at: https://docs.sacul.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Delete a specific file from a bucket.

Authentication

Requires an API Key via Authorization, X-API-Key, or apiKey query parameter.

Query Parameters

bucketName
string
required
The name of the bucket containing the file.
*path
string
required
The full path to the file to be deleted.

Response

{ 
    "success": true, 
    "message": "Deleted bucket/key" 
}

Example

curl -X DELETE https://cdn.sacul.cloud/my-bucket/old-file.png \
    -H "Authorization: Bearer <your-api-key>"