Manage a Stored Object
Click any of the stored objects in your bucket.

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.
- 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:
-
Click the required object.
-
Click the Add Meta button.
-
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.
Your custom meta data will be added to the object.

Ensure the following packages are imported:
copy
import org.json.simple.JSONObject;
copy
HashMap<String, String> objectMeta = new HashMap<>(); objectMeta.put(“key1”, “value1”); objectMeta.put(“key2”, “value2”); JSONObject res = object.putMeta(objectMeta); System.out.println(res);
copy
const objectMeta = { “key1”: “value1” , “key2”: “value2” }; const objMeta = await objectIns.putMeta(objectMeta); console.log(objMeta);
copy
res = object_ins.put_meta({‘author’: ‘Amelia Burrows’}) print(res)
Edit Custom Meta Data
To edit the custom meta data:
-
Click Modify Meta.
-
Make the required changes and click Save.
The changes will be applied.

Last Updated 2025-06-03 18:19:55 +0530 +0530
Yes
No
Send your feedback to us