openapi: 3.1.0 info: title: Dome9 / CloudGuard AWSAccounts Compliance API description: Dome9 (now Check Point CloudGuard) REST API for managing cloud accounts, security policies, compliance findings, roles, and users across AWS, Azure, and Google Cloud. Endpoints derived from public CloudGuard developer hub documentation at https://docs.cgn.portal.checkpoint.com/ — best-effort, not exhaustive. Uses HTTP Basic authentication where the username is the API key id and the password is the API key secret. version: '2' contact: name: Check Point CloudGuard url: https://www.checkpoint.com/cloudguard/ license: name: Proprietary servers: - url: https://api.dome9.com description: Dome9 / CloudGuard production security: - BasicAuth: [] tags: - name: Compliance paths: /v2/compliancefinding: get: tags: - Compliance summary: Retrieve compliance findings operationId: listComplianceFindings parameters: - in: query name: pageSize schema: type: integer default: 100 - in: query name: pageNumber schema: type: integer default: 0 responses: '200': description: OK components: securitySchemes: BasicAuth: type: http scheme: basic description: HTTP Basic with username = API key id and password = API key secret.