Policy Checks API
List Policy Checks
This endpoint lists the policy checks in a run.
Note: The sentinel
hash in the result
attribute structure represents low-level Sentinel details generated by the policy engine. The keys or structure may change over time. Use the data in this hash at your own risk.
GET /runs/:run_id/policy-checks
Parameter | Description |
---|---|
run_id | The ID of the run to list policy checks for. |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling doesn't automatically encode URLs. If neither pagination query parameters are provided, the endpoint will not be paginated and will return all results.
Parameter | Description |
---|---|
page[number] | Optional. If omitted, the endpoint will return the first page. |
page[size] | Optional. If omitted, the endpoint will return 20 policy checks per page. |
Sample Request
Sample Response
Show Policy Check
This endpoint gets information about a specific policy check ID. Policy check IDs can appear in audit logs.
Note: The sentinel
hash in the result
attribute structure represents low-level Sentinel details generated by the policy engine. The keys or structure may change over time. Use the data in this hash at your own risk.
GET /policy-checks/:id
Parameter | Description |
---|---|
id | The ID of the policy check to show. |
Sample Request
Sample Response
Override Policy
This endpoint overrides a soft-mandatory or warning policy.
Note: The sentinel
hash in the result
attribute structure represents low-level Sentinel details generated by the policy engine. The keys or structure may change over time. Use the data in this hash at your own risk.
POST /policy-checks/:id/actions/override
Parameter | Description |
---|---|
id | The ID of the policy check to override. |
Sample Request
Sample Response
Available Related Resources
The GET endpoints above can optionally return related resources, if requested with the include
query parameter. The following resource types are available:
Resource Name | Description |
---|---|
run | The run this policy check belongs to. |
run.workspace | The associated workspace of the run. |
List Policy Evaluations in the Task Stage
Each run passes through several stages of action (pending, plan, policy check, apply, and completion), and shows the progress through those stages as run states. This endpoint allows you to list policy evaluations that are part of the task stage.
This endpoint is only available for OPA policies.
GET /task-stages/:task_stage_id/policy-evaluations
Parameter | Description |
---|---|
:task_stage_id | The task stage ID to get. |
Status | Response | Reason |
---|---|---|
200 | JSON API document | Success |
404 | JSON API error object | Task stage not found |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling does not automatically encode URLs.
Parameter | Description |
---|---|
page[number] | Optional. If omitted, the endpoint returns the first page. |
page[size] | Optional. If omitted, the endpoint returns 20 agent pools per page. |
Sample Request
Sample Response
List Policy Outcomes
This endpoint is only available for OPA policies.
GET /policy-evaluations/:policy_evaluation_id/policy-set-outcomes
Parameter | Description |
---|---|
:policy_evaluation_id | The ID of the policy evaluation the outcome belongs to get |
This endpoint allows you to list policy set outcomes that are part of the policy evaluation.
Status | Response | Reason |
---|---|---|
200 | JSON API document | Success |
404 | JSON API error object | Policy evaluation not found |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling does not automatically encode URLs.
Parameter | Description |
---|---|
page[number] | Optional. If omitted, the endpoint returns the first page. |
page[size] | Optional. If omitted, the endpoint returns 20 policy sets per page. |
filter[n][status] | Optional. If omitted, the endpoint returns all policies regardless of status. Must be either "passed", "failed", or "errored". |
filter[n][enforcementLevel] | Optional. Only used if paired with a non-errored status filter. Must be either "advisory" or "mandatory." |
Note: You can use filter[n]
to combine combinations of statuses and enforcement levels. Policy outcomes with an errored status do not have an enforcement level.
Sample Request
All Policy Outcomes
Failed and Errored Policy Outcomes
Sample Response
Show a Policy Outcome
GET /policy-set-outcomes/:policy_set_outcome_id
Parameter | Description |
---|---|
:policy_set_outcome_id | The ID of the policy outcome to show. Use the "List the Policy Outcomes of the Policy Evaluation" endpoint to find IDs. |
Status | Response | Reason |
---|---|---|
200 | JSON API document | The request was successful |
404 | JSON API error object | Policy set outcome not found or user unauthorized to perform action |
Sample Request
Sample Response