Python
import requests url = "https://{FUSION HOST}/api/blobs" response = requests.get(url) print(response.text)
[ { "id": "<string>", "path": "<string>", "dir": "<string>", "filename": "<string>", "contentType": "<string>", "size": 123, "modifiedTime": "2023-11-07T05:31:56Z", "version": 123, "md5": "<string>", "metadata": {} } ]
Get the list of existing blobs and their attributes.
Note that recursion is off by default.
A blob store directory to be queried.
true to recurse when querying the directory.
true
Show directories when querying directory.
successful operation
Show child attributes
Was this page helpful?