curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/resolve \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
],
"action": "Approve",
"rationale": "<string>",
"is_false_positive": false
}
'{
"data": {
"resolved": 123,
"failed": 123,
"errors": [
{
"alert_token": "<string>",
"error": "<string>"
}
]
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Resolve multiple alerts in a single request. All alerts must belong to the same case. The same resolution action and rationale are applied to all alerts. Maximum 50 alerts per request.
curl --request POST \
--url https://instance.prod.onboardapp.io/v1/alerts/bulk/resolve \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"alert_tokens": [
"<string>"
],
"action": "Approve",
"rationale": "<string>",
"is_false_positive": false
}
'{
"data": {
"resolved": 123,
"failed": 123,
"errors": [
{
"alert_token": "<string>",
"error": "<string>"
}
]
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Unique key for idempotent request handling. If a request with the same key was already processed within the last 24 hours, the original response is returned.
List of alert tokens to resolve.
1 - 50 elementsResolution action to apply to all alerts.
Approve, Decline, Escalate, Request Document, Approve with Conditions Resolution rationale.
5000Mark all alerts as false positives.