/bucket/size/{bucketId}GETbucketId (required): The ID of the bucket for which the size is being retrieved. Example: my-example-bucketGET /bucket/size/my-example-bucketmy-example-bucket.200 OK: Successfully retrieved the bucket size. The response body will typically contain the size in bytes (or another appropriate unit). Example response body:{
"size": 1234567890 // Size in bytes
}{
"size": "1.23 GB" // Size in human-readable format
}400 Bad Request: Invalid request parameters (e.g., malformed bucketId).404 Not Found: Bucket not found.500 Internal Server Error: Server error.