# Handle Stored Objects -------------------------------------------------------------------------------- title: "Manage a Stored Object" description: "Stratus is a robust cloud storage solution powered by Catalyst. You can store data of any format type in the form of buckets and objects." last_updated: "2026-09-02T11:24:40.106Z" source: "https://docs.catalyst.zoho.com/en/cloud-scale/help/stratus/objects/manage-object/manage-stored-object/" service: "Cloud Scale" related: - Create a Bucket (/en/cloud-scale/help/stratus/buckets/create-bucket/) - Upload an Object (/en/cloud-scale/help/stratus/objects/upload-object/) - Object Versioning (/en/cloud-scale/help/stratus/stratus-config/general-settings/#versioning) - Java SDK (/en/sdk/java/v1/cloud-scale/stratus/overview/) - Node.js SDK (/en/sdk/nodejs/v2/cloud-scale/stratus/overview/) - Python SDK (/en/sdk/python/v1/cloud-scale/stratus/overview/) - Web SDK (/en/sdk/web/v4/cloud-scale/stratus/overview/) - iOS SDK (/en/sdk/ios/v2/cloud-scale/stratus/overview/) - Android SDK (/en/sdk/android/v2/cloud-scale/stratus/overview/) - Flutter SDK (/en/sdk/flutter/v2/cloud-scale/stratus/overview/) - REST API (/en/api/code-reference/cloud-scale/stratus/get-all-buckets/#GetAllBuckets) -------------------------------------------------------------------------------- # Manage a Stored Object Click any of the stored objects in your bucket. <br /> You will be able to perform the following operations on the object: * View general details, such as the *name*, *size*, *modified time*, and *format* of the object. * You can access the object directly using the secure Object URL. This URL can be copied and used in your code to satisfy your requirement. <!--* You can enable Caching for the bucket; a **Caching URL** will be generated by Stratus. This URL can also be copied. When you access objects using this URL, they will be cached. * You can click the **Purge Cache** button to purge the stored cache of the object.--> * If you have enabled Versioning, you can view all the versions of the object present in the bucket. * Provide Custom Meta Data for the object. * Download the object * Delete the Object ### Provide Custom Meta Data for an Object To provide meta data for your object: Note: The maximum size limit of characters allowed for the overall metadata is 2047 characters. The character count used to determine the size limit also includes the colon “:” special character used to define the key value pair. 1. Click the required object. <br /> 2. Click the **Add Meta** button. <br /> 3. The meta data you provide will be rendered and applied to the object in a **JSON key value format**. Click **Save** once you have completed adding the required data. <br /> Your custom meta data will be added to the object. <br /> Note: Visit this help document for more information on this SDK method. **Ensure the following packages are imported:** import org.json.simple.JSONObject; HashMap&lt;String, String&gt; objectMeta = new HashMap&lt;&gt;(); objectMeta.put("key1", "value1"); objectMeta.put("key2", "value2"); JSONObject res = object.putMeta(objectMeta); System.out.println(res); Note: Visit this help document for more information on this SDK method. const objectMeta = { "key1": "value1" , "key2": "value2" }; const objMeta = await objectIns.putMeta(objectMeta); console.log(objMeta); Note: Visit this help document for more information on this SDK method. res = object_ins.put_meta({'author': 'Amelia Burrows'}) print(res) ### Edit Custom Meta Data To edit the custom meta data: 1. Click **Modify Meta**. <br /> 2. Make the required changes and click **Save**. <br /> The changes will be applied. <br /> -------------------------------------------------------------------------------- title: "Download an Object From Bucket" description: "Stratus is a robust cloud storage solution powered by Catalyst. You can store data of any format type in the form of buckets and objects." last_updated: "2026-09-02T11:24:40.107Z" source: "https://docs.catalyst.zoho.com/en/cloud-scale/help/stratus/objects/manage-object/download-object/" service: "Cloud Scale" related: - Create a Bucket (/en/cloud-scale/help/stratus/buckets/create-bucket/) - Upload an Object (/en/cloud-scale/help/stratus/objects/upload-object/) - Object Caching (/en/cloud-scale/help/stratus/stratus-config/general-settings/#caching) - Object Versioning (/en/cloud-scale/help/stratus/stratus-config/general-settings/#versioning) - Java SDK (/en/sdk/java/v1/cloud-scale/stratus/download-object/) - Node.js SDK (/en/sdk/nodejs/v2/cloud-scale/stratus/download-object/) - Python SDK (/en/sdk/python/v1/cloud-scale/stratus/download-object/) - Web SDK (/en/sdk/web/v4/cloud-scale/stratus/download-object/) - iOS SDK (/en/sdk/ios/v2/cloud-scale/stratus/download-object/) - Android SDK (/en/sdk/android/v2/cloud-scale/stratus/download-object/) - Flutter SDK (/en/sdk/flutter/v2/cloud-scale/stratus/download-object/) - REST API (/en/api/code-reference/cloud-scale/stratus/download-object/#DownloadObject) -------------------------------------------------------------------------------- # Download an Object From a Bucket To download an object from the bucket: 1. Click or select the required object. <br /> 2. Click **Download**. <br /> 3. Click **Save** in your system prompt. <br /> The object will be downloaded to your local system. You can also download the object using the **Download** button present in the object details view. <br /> Note: Visit this help document for more information on this SDK method. **Ensure the following packages are imported** import com.zc.component.stratus.beans.ZCGetObjectOptions; import java.nio.file.Path; import java.nio.file.Files; import java.nio.file.StandardCopyOption; import java.io.*; InputStream dataStream = bucket.getObject("objectName"); // download the object to your local machine Path path = Path.of("file_path"); // specify a path to store the downloaded object Files.copy(dataStream, path, StandardCopyOption.REPLACE_EXISTING); Note: Visit this help document for more information on this SDK method. const res = await bucket.getObject("objectName"); // download the object to local machine const files = fs.createWriteStream('filePath'); res.on('data', (data) => { files.write(data) }); Note: Visit this help document for more information on this SDK method. res = bucket.get_object('object_name') # download the object to local machine file = open('file_path','wb') file.write(res) Note: Visit this help document for more information on this SDK method. objectInstance.download(fromCache : true) { result in switch result { case.success(let url): do { let data = Data(contentsOf : url) DispatchQueue.main.sync { self.imageView.image = UIImage(date : data) } } catch { print("Error : \( error )") } case.error(let error): print("Error : \( error )") } } Note: Visit this help document for more information on this SDK method. bucketInstance.getObject("SunSet.jpeg", "2823000000044005", //Replace this with your Folder ID and File ID { object->object.download({println("File download success ${it.available()}")}, {println("File download failed $it")}) Note: Visit this help document for more information on this SDK method. try { ZCatalystBucket bucket = stratus.bucket("testing"); var(response, object) = await bucket.getObject("SunSet.jpeg"); final downloadsDir = await getExternalStorageDirectory(); final filePath = downloadsDir !.absolute.path; var fileResponse = await object.download( pathToDownload : filePath, onProgress : (bytesWritten, contentLength, percentage) { print("Downloaded Percentage: $percentage"); }, ); print("Download Status: ${fileResponse.statusCode}"); OpenFile.open(filePath + '/SunSet.jpeg'); } on ZCatalystException catch (ex) { print(ex.toString()); } -------------------------------------------------------------------------------- title: "Delete an Object From a Bucket" description: "Stratus is a robust cloud storage solution powered by Catalyst. You can store data of any format type in the form of buckets and objects." last_updated: "2026-09-02T11:24:40.107Z" source: "https://docs.catalyst.zoho.com/en/cloud-scale/help/stratus/objects/manage-object/delete-object/" service: "Cloud Scale" related: - Create a Bucket (/en/cloud-scale/help/stratus/buckets/create-bucket/) - Upload an Object (/en/cloud-scale/help/stratus/objects/upload-object/) - Object Caching (/en/cloud-scale/help/stratus/stratus-config/general-settings/#caching) - Object Versioning (/en/cloud-scale/help/stratus/stratus-config/general-settings/#versioning) - Java SDK (/en/sdk/java/v1/cloud-scale/stratus/delete-objects/) - Node.js SDK (/en/sdk/nodejs/v2/cloud-scale/stratus/delete-objects/) - Python SDK (/en/sdk/python/v1/cloud-scale/stratus/delete-objects/) - Web SDK (/en/sdk/web/v4/cloud-scale/stratus/delete-object/) - iOS SDK (/en/sdk/ios/v2/cloud-scale/stratus/delete-object/) - Android SDK (/en/sdk/android/v2/cloud-scale/stratus/delete-object/) - Flutter SDK (/en/sdk/flutter/v2/cloud-scale/stratus/delete-object/) - REST API (/en/api/code-reference/cloud-scale/stratus/delete-objects/#DeleteObject) -------------------------------------------------------------------------------- # Delete an Object From a Bucket To delete an object from the bucket: 1. Select the required object. <br /> 2. Click **Delete**. <br /> 3. Click **Delete** in the prompt as well. <br /> The delete action will be scheduled, and it will take a short while before the operation is rendered in the console. Delete operations can be performed on multiple objects and on multiple paths in the same manner. You can also use the **Delete** button present in the object details view to delete the object. <br /> Note: Visit this help document for more information on this SDK method. **Ensure the following packages are imported:** import org.json.simple.JSONObject; int ttl = 200; JSONObject deleteRes = bucket.deleteObject("objectName", "versionId", ttl); System.out.println(deleteRes); Note: Visit this help document for more information on this SDK method. const res = await bucket.deleteObject("objectName"); console.log(res); Note: Visit this help document for more information on this SDK method. delete_res = bucket.delete_object('object_name') print(delete_res) Note: Visit this help document for more information on this SDK method. // Delete an object const deleteObject = await bucket.deleteObject("objectName"); Note: Visit this help document for more information on this SDK method. objectInstance.delete() { error in if let error = error { print("Error : \\( error )") return } print("Deleted Successfully") } Note: Visit this help document for more information on this SDK method. bucketInstance.getObject("SunSet.jpeg", "2823000000044005", //Replace this with your Object Name and Object ID { object -> object.delete( { println("Object Deletion Success.") }, { println("Failed to delete the object. $it") } ) Note: Visit this help document for more information on this SDK method. try { ZCatalystBucket bucket = stratus.bucket("testing"); var (response, objects, _) = await bucket.getObjects(maxKeys: 5, prefix: 'trip'); var response = await bucket.deleteObjects(objects); print("Delete Objects: ${response.statusCode}"); } on ZCatalystException catch (ex) { print(ex.toString()); } Note: When you perform a delete operation on an object, and if it is the only object present in the particular path, then the entire path will be deleted. An empty path cannot exist in a bucket.