curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/cases \
--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,
"flag": true
},
"options": {
"selectAll": true,
"filters": {},
"dryRun": true
}
}
'{
"success": true,
"processed": 123,
"failed": 123,
"total": 123,
"errors": [
{
"id": "<string>",
"error": "<string>"
}
],
"durationMs": 123
}Bulk update multiple cases (FUNC-014)
curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/cases \
--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,
"flag": true
},
"options": {
"selectAll": true,
"filters": {},
"dryRun": true
}
}
'{
"success": true,
"processed": 123,
"failed": 123,
"total": 123,
"errors": [
{
"id": "<string>",
"error": "<string>"
}
],
"durationMs": 123
}API key authentication. Use format: Bearer cbr_live_your_key