Skip to main content

Get Code review runs data

GET 

/code/api/v1/development-pipeline/code-review/runs/data

Prisma Cloud Application Security’s Code Reviews table enables you to view the latest code reviews across your integrated VCS and CI/CD repository snapshots. With Code Reviews, you can analyze how many issues were found in each scan, broken down by severity threshold levels, the scan status and the Enforcement settings for different code categories at the time of the scan.

The response includes the following data for each VCS or CI/CD code review:

  • Repository: the Git repository to which the scanned item belongs
  • Organization: the Git organization to which the scanned item belongs and its VCS type
  • defaultBranch: The default branch of the repository
  • commitId: Git commit hash for VCS tool code review
  • runId: Prisma Cloud Application Security’s run ID, set for CI/CD tool code review
  • gitUser: the Git user who has triggered the scan:
    • For VCS, this is the commit creator.
    • For CI/CD, if detected, this is the user who triggered the scan.
  • scanStatus: Failed or Passed, based on Enforcement settings: HARD_FAIL - scan has failed and will break build or block PR SOFT_FAIL - issues at a certain severity threshold were found, but the scan will not break build or block PR PASS - no issues for Hard Fail or Soft Fail were found UNKNOWN - scan was unsuccessful
  • SourceType: the VCS the Git repository is hosted on
  • Results: Severity breakdown of the detected issues
  • lastScanDate: last scan’s time and date
  • creationDate: scan’s start time and date
  • status - the run status COMPLETED/IN_PROGRESS/FAILED/ARCHIVED
  • PR: { title: PR name prNumber: PR ID lastScanDate: scan date fromBranch: source branch intoBranch: target branch enforcementRule: { IAC: Soft Fail and Hard Fail settings IMAGES: Soft Fail and Hard Fail settings OPEN_SOURCE: Soft Fail and Hard Fail settings SECRETS: Soft Fail and Hard Fail settings SUPPLY_CHAIN: Soft Fail and Hard Fail settings } }

Request

Query Parameters

    sortBy string

    Possible values: [resourcesCount, user, failedResources, scanTime]

    search string
    • string, optional
    limit double
    • number, optional; default value = 1000
    page double

Responses

Get code review data runs for customer

Schema
    data object[]required
  • Array [
  • PR object
    enforcementRule object
    IAC objectrequired
    commentsBotThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    hardFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    softFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    IMAGES objectrequired
    commentsBotThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    hardFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    softFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    OPEN_SOURCE objectrequired
    commentsBotThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    hardFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    softFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    SECRETS objectrequired
    commentsBotThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    hardFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    softFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    SUPPLY_CHAIN objectrequired
    commentsBotThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    hardFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    softFailThreshold RuleThreshold (string)required

    Possible values: [OFF, INFO, LOW, MEDIUM, HIGH, CRITICAL]

    fromBranch string
    intoBranch string
    lastScanDate date-time
    prNumber stringrequired
    title stringrequired
    commitId string
    creationDate date-timerequired
    defaultBranch string
    gitUser stringrequired
    id stringrequired
    lastScanDate date-timerequired
    organization stringrequired
    repository stringrequired
    results objectrequired
    CRITICAL doublerequired
    HIGH doublerequired
    LOW doublerequired
    MEDIUM doublerequired
    runId double
    scanStatus ScanStatus (string)required

    Possible values: [HARD_FAIL, SOFT_FAIL, PASS, UNKNOWN]

    sourceType SourceType (string)required

    Possible values: [Github, Bitbucket, Gitlab, AzureRepos, cli, AWS, Azure, GCP, Docker, githubEnterprise, gitlabEnterprise, bitbucketEnterprise, terraformCloud, githubActions, circleci, codebuild, jenkins, tfcRunTasks, admissionController, terraformEnterprise]

    status RunStatus (string)required

    Possible values: [COMPLETED, IN_PROGRESS, FAILED, ARCHIVED]

  • ]
  • hasNext booleanrequired
Loading...