list_asset_executions
Find all executions linked to an asset by its RID, tracing which workflow created or used it as input or output. Filter by role to pinpoint the producing execution.
Instructions
List all executions associated with an asset.
Given an asset RID, returns a list of executions that created or used the asset, along with the role (Input/Output) in each execution. This is useful for provenance tracking - finding which execution created an asset or which executions used it as input.
Args: asset_rid: RID of the asset to look up. asset_role: Optional filter: "Input" or "Output". If omitted, returns all.
Returns: JSON array of execution records showing which executions are associated with this asset. Each record includes execution_rid, workflow_rid, status, and description.
Example: list_asset_executions("3JSE") -> finds all executions that created/used this asset list_asset_executions("3JSE", "Output") -> finds only the execution that created it
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_rid | Yes | ||
| asset_role | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |