The Run blueprint block allows you to call another blueprint from within your current workflow. This enables modular, reusable logic and lets you break complex workflows into smaller, manageable pieces.You can specify the blueprint to run and pass input parameters. The output of the called blueprint is available for use in subsequent blocks.
Blueprint Key: Select the blueprint to run by its key. The blueprint must have a key set in its settings. If the blueprint doesn’t have a key, it does not show in the list of available blueprints.
Payload: Provide input data as text that will be available as @{payload} in the called blueprint. The payload is treated as plain text.
The block executes the specified blueprint and returns any output that the called blueprint returns with the Return value block.
No trigger required: Blueprints called with the Run blueprint block don’t need a UI trigger or any other trigger. They start execution immediately when called and can access the payload data you pass in.
This example demonstrates a document processing system that handles different file types using specialized blueprints.Blueprint Flow:
UI Trigger → User uploads document through file input
Classification → Identifies document type (invoice, resume, or contract)
Conditional routing → Routes to appropriate processing blueprint
Run blueprint → Executes specialized document processor
Set state → Stores the processing result to display in the UI
Block Configuration:
For invoice processing:
Blueprint Key:invoice_processor
Payload:@{file_data}
Called Blueprint Access:
In the invoice_processor blueprint, you can access the passed data using @{payload}. Then you can return a value from the blueprint using the Return value block.
Below are the possible end states of the block call.
Name
Field
Type
Description
Success
-
success
The request was successful.
Error
-
error
The blueprint execution failed.
The output of the Run blueprint block is the return value from the called blueprint. This is typically the result of the last block in the called blueprint, or a specific return value if the called blueprint has a Return value block. You can access this output in subsequent blocks using @{result}.
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.