Skip to main content
GET
/
blobs
/
{id}
Get a blob
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"
    }
  }
]

Path Parameters

id
string
required

The blob ID.

Response

200 - application/json

Successful operation

The response is of type any.