Path Parameters
The blob ID.
Response
200 - application/json
Successful operation
The response is of type any.
import requests
url = "https://{FUSION HOST}/api/blobs/{id}"
response = requests.get(url)
print(response.json())[
{
"id": "query-pipeline-js-stage.js",
"path": "/query-pipeline-js-stage.js",
"dir": "/",
"filename": "query-pipeline-js-stage.js",
"contentType": "text/javascript",
"size": 0,
"modifiedTime": "2018-09-11T16:23:17.743Z",
"version": 1611328911094841300,
"md5": "d41d8cd98f00b204e9800998ecf8427e",
"metadata": {
"resourceType": "file:js-query"
}
}
]Get a blob’s attributes.
import requests
url = "https://{FUSION HOST}/api/blobs/{id}"
response = requests.get(url)
print(response.json())[
{
"id": "query-pipeline-js-stage.js",
"path": "/query-pipeline-js-stage.js",
"dir": "/",
"filename": "query-pipeline-js-stage.js",
"contentType": "text/javascript",
"size": 0,
"modifiedTime": "2018-09-11T16:23:17.743Z",
"version": 1611328911094841300,
"md5": "d41d8cd98f00b204e9800998ecf8427e",
"metadata": {
"resourceType": "file:js-query"
}
}
]The blob ID.
Successful operation
The response is of type any.
Was this page helpful?