Skip to main content
PUT
/
tasks
/
{id}
Update task
curl --request PUT \
  --url https://nvidia.casebender.com/api/v1/tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "assigneeId": "<string>",
  "teamIds": [
    "<string>"
  ],
  "dueDate": "2023-11-07T05:31:56Z",
  "mandatory": true,
  "flagged": true,
  "status": "<string>",
  "tlp": 2
}
'

Authorizations

Authorization
string
header
required

API key authentication. Use format: Bearer cbr_live_your_key

Path Parameters

id
string
required

Body

application/json
title
string
Required string length: 1 - 200
description
string
assigneeId
string
teamIds
string[]

Team IDs to assign task to (FUNC-045). Replaces existing teams.

dueDate
string<date-time>
mandatory
boolean
flagged
boolean
status
string
tlp
integer

TLP classification (FUNC-044). 0=CLEAR, 1=GREEN, 2=AMBER, 3=AMBER+STRICT, 4=RED. Can only be set equal to or higher than the parent case's TLP (elevation-only constraint).

Required range: 0 <= x <= 4

Response

200

Default Response