action intellifi_add_blob { label: "Create binary large object (blob) metadata" provider: intellifi method: POST path: "/blobs" encoding: json input: { 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." } } } output: { type: "object" properties: { resource: { type: "object" properties: { id: { type: "string" description: "Unique identifier for resource." } url: { type: "string" description: "Url to the individual resource." } } } status: { type: "integer" description: "Status code" } } } }