curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/tasks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"dueDate": "2023-11-07T05:31:56Z",
"mandatory": true,
"tlp": 2
},
"options": {
"selectAll": true,
"filters": {}
}
}
'Bulk update multiple tasks (FUNC-014)
curl --request POST \
--url https://nvidia.casebender.com/api/v1/bulk/tasks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
],
"fields": {
"title": "<string>",
"description": "<string>",
"status": "<string>",
"assigneeId": "<string>",
"dueDate": "2023-11-07T05:31:56Z",
"mandatory": true,
"tlp": 2
},
"options": {
"selectAll": true,
"filters": {}
}
}
'