curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/alerts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"statusValue": "<string>",
"severity": 2.5,
"assigneeId": "<string>",
"tlp": 2,
"pap": 1.5
},
"options": {
"selectAll": true,
"filters": {},
"dryRun": true
}
}
'Bulk update multiple alerts (FUNC-014)
curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/alerts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"statusValue": "<string>",
"severity": 2.5,
"assigneeId": "<string>",
"tlp": 2,
"pap": 1.5
},
"options": {
"selectAll": true,
"filters": {},
"dryRun": true
}
}
'