Skip to main content
POST
/
api
/
v1
/
sca
/
alerts
/
acknowledge
Acknowledge (or re-open) an SCA alert
curl --request POST \
  --url https://zeropath.com/api/v1/sca/alerts/acknowledge \
  --header 'Content-Type: application/json' \
  --header 'X-ZeroPath-API-Token-Id: <api-key>' \
  --header 'X-ZeroPath-API-Token-Secret: <api-key>' \
  --data '
{
  "organizationId": "<string>",
  "alertId": "<string>",
  "acknowledged": true
}
'
{
  "id": "<string>",
  "acknowledgedAt": "2023-11-07T05:31:56Z",
  "acknowledged": true
}

Authorizations

X-ZeroPath-API-Token-Id
string
header
required
X-ZeroPath-API-Token-Secret
string
header
required

Body

application/json
organizationId
string
required
alertId
string
required

The SCAVulnerabilityAlert id to triage

acknowledged
boolean
default:true

true (default) acknowledges the alert (moves it out of the new list); false re-opens it back into new.

Response

Successful response

id
string
required
acknowledgedAt
string<date-time> | null
required
acknowledged
boolean
required