Use these APIs to retrieve execution details and results for a specific Data Quality policy run.
They are typically used to monitor policy performance, debug failures, and view rule-level outcomes.
Endpoint(s)
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | Unique ID of the Data Quality policy execution (not the policy itself) |
id obtained from the List Executions endpoint (/data-quality/:id/executions) to query these APIs.
Sample Requests
curl -X GET "https://{HOST}/catalog-server/api/rules/data-quality/executions/99999" \ -H "Authorization: Bearer $TOKEN" -H "accessKey: $ACCESS_KEY" -H "secretKey: $SECRET_KEY"Execution result
curl -X GET "https://{HOST}/catalog-server/api/rules/data-quality/executions/99999/result" \ -H "Authorization: Bearer $TOKEN" -H "accessKey: $ACCESS_KEY" -H "secretKey: $SECRET_KEY"Was this page helpful?