Update Task Note
put
Add/update a note to the task
Authorizations
Path parameters
projectIdstringRequired
taskIdstringRequired
Body
typestring · enumRequiredPossible values:
valuestring · min: 1RequiredPattern:
^[^\r\n]*$
Responses
200
Successful Task Note creation/update
application/json
4XX
Error description
application/json
put
PUT /api/v1/projects/{projectId}/tasks/{taskId}/note HTTP/1.1
Host: www.taskade.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 36
{
"type": "text/plain",
"value": "text"
}
{
"ok": true,
"item": {
"type": "text",
"value": "text"
}
}
Last updated