Get blob metadata
import requests
url = "https://{FUSION HOST}/api/blobs/{id}"
response = requests.head(url)
print(response.text)This response has no body data.Get only the metadata about a blob.
HEAD
/
blobs
/
{id}
Get blob metadata
import requests
url = "https://{FUSION HOST}/api/blobs/{id}"
response = requests.head(url)
print(response.text)This response has no body data.Path Parameters
The blob ID.
Pattern:
.*Response
200 - undefined
Was this page helpful?
⌘I