run_table_enrichment
Triggers a specified enrichment or waterfall to process rows in a table. Supports running on all rows, only empty rows, or rows with errors.
Instructions
Trigger an enrichment or waterfall to run on a table. By default runs on all rows. Optionally specify row_ids to run on specific rows, and run_strategy to control row selection. Works for both enrichments (from add_table_enrichment) and waterfalls (from add_table_waterfall). Subject to spending limits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_uuid | Yes | The UUID of the table | |
| enrichment_id | Yes | The table enrichment/waterfall ID to run (returned by add_table_enrichment or add_table_waterfall) | |
| row_ids | No | Optional: specific row IDs to process. When omitted, processes all rows. | |
| run_strategy | No | Which rows to process: 'run_all' (default) runs every row, 'run_empty' skips rows that already have a result, 'run_errors' reruns only rows that ended with an error. |