Skip to content

asset.store

Operation: asset.store
Category: asset

Store a value as an asset in the asset store

Type: Native (built-in)
Timeout: 300s
Retries: 3 (ExponentialWithJitter)

NameTypeRequiredDefaultDescription
dataAnyYesData to store
content_typeStringNo"application/octet-stream"MIME type
NameTypeDescription
asset_idStringGenerated asset ID
content_typeStringContent type
storedBooleanWhether the asset was stored
import { WorkflowBuilder } from "@fabric-platform/sdk";
const workflow = new WorkflowBuilder("my-workflow")
.node("asset-store", "tool", (n) =>
n.config({
operation: "asset.store",
// ... node-specific config
})
)
.build();