action intellifi_get_blob_metadata_by_id { label: "Get binary large object (blob)" provider: intellifi method: GET path: "/blobs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["key"] properties: { blob_key: { type: "string" description: "Unique key to the blob" } content_type: { type: "string" description: "Media type of the resource. Automatically detected when not given in a POST." } download_url: { type: "string" description: "Url to the individual resource." } filename: { type: "string" description: "Filename of the blob" } hash: { type: "string" description: "Hash of the blob" } id: { type: "string" description: "Unique identifier for resource." } time_created: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was created." } time_last_accessed: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was last accessed." } time_updated: { type: "string" format: "dateTime" description: "[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) formatted string for when this resource was updated." } upload_url: { type: "string" description: "Url to the individual resource." } url: { type: "string" description: "Url to the individual resource." } } } }