Skip to main content

Create Remediation Request

POST 

/uve/api/v1/remediation/vuln-create-remediation

You create one of the following remediation action request for an asset or a set of assets:

  • Create a task or JIRA ticket

  • Create a merge request

  • Suppress the vulnerability

    Remediation action request can be created at the following levels:

  • Asset level- Perform remediation action on an asset by asset ID

  • Group level- Perform remediation action for all the assets of a particular asset type for a specified CVE ID

  • Global level- Perform remediation action on all assets of a specified CVE ID

    info

    This endpoint is available on the Prisma Cloud Darwin release only.

Request

Header Parameters

    template-id string

    JIRA ID. Required only for createTask remediation action.

    assignee string

    JIRA assignee. Required only for createTask remediation action.

Body

    cveId stringrequired

    CVE ID of the vulnerability.

    prismaId stringrequired

    Prisma ID of the customer.

    remediationAction stringrequired

    Possible values: [createTask, createPr, suppress]

    Remediation action: create a JIRA/task, create a PR, or suppress the vulnerability.

    assetType string

    Possible values: [iac, package, deployedImage, serverlessFunction, host, registryImage, vmImage]

    Asset type. Required only for group level remediation.

    assetId object[]

    Asset IDs. Required only for asset level remediation.

  • Array [
  • assetType string

    Possible values: [iac, package, deployedImage, serverlessFunction, host, registryImage, vmImage]

    Type of asset.

    assetId string

    UAI ID of the asset.

  • ]

Responses

ACCEPTED

Schema
    message string

    Response message

    details string

    Error details if applicable

    timeStamp integer

    Timestamp of resppnse

    request_id string

    UUID identifier to indentify the request

Loading...