Execute Rule
Trigger a rule execution immediately on a specified asset. You might want to validate data freshness or integrity as part of a data pipeline, or to run checks on demand (e.g., after a data load). Use this endpoint to kickoff the rule execution process.
For instance, after ingesting a daily batch into customer_orders
, trigger your no_null_emails
rule to confirm that no records have null emails.
Endpoint
POST /catalog-server/api/rules/executions
Request Body
{
"ruleId": 1001,
"assetId": 12616
}
Sample Request
curl -X PUT "https://demo.acceldata.io/catalog-server/api/rules/executions"
Response Schema
See Execution Schema
Was this page helpful?