Skip to main content
GET
/
scan
/
{scan_id}
/
check_blocking_rules
Check Blocking Rules
curl --request GET \
  --url https://www.corgea.app/api/v1/scan/{scan_id}/check_blocking_rules \
  --header 'CORGEA-TOKEN: <api-key>'
{
  "block": true,
  "blocking_issues": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "triggered_by_rules": [
        "<string>"
      ]
    }
  ],
  "stats": {
    "total_issues": 123,
    "blocked_issues": 123
  },
  "page": 123,
  "total_pages": 123
}

Authorizations

CORGEA-TOKEN
string
header
required

API key for authentication

Path Parameters

scan_id
string<uuid>
required

The ID of the scan

Query Parameters

page
integer
default:1

The page number for pagination

page_size
integer
default:20

The number of results per page

Required range: x <= 50

Response

Blocking rules check completed

block
boolean

Whether the scan is blocked by any rules

blocking_issues
object[]
stats
object
page
integer
total_pages
integer
I