Skip to main content
DELETE
/
user
/
bucket
Reset Bucket Config
curl --request DELETE \
  --url https://api.example.com/user/bucket \
  --header 'x-api-key: <x-api-key>'
{
  "message": "Bucket configuration reset to default"
}

Overview

Remove your custom S3 bucket configuration and revert to using Tornado’s default managed storage.

Header Parameters

x-api-key
string
required
Your API key for authentication

Request

No request body required. Simply send a DELETE request with your API key.

Response

message
string
Success confirmation message

Example

curl -X DELETE "https://tornado.velys.software/user/bucket" \
  -H "x-api-key: sk_your_api_key"

Success Response

{
  "message": "Bucket configuration reset to default"
}

Error Responses

{
  "error": "Missing x-api-key header"
}

When to Use

  • You want to stop using your own S3 bucket
  • Your bucket credentials have changed and you want to reconfigure
  • You’re troubleshooting storage issues
After resetting, all new downloads will be stored in Tornado’s managed storage. Existing files in your bucket remain untouched.