Last updated 21 days ago
Add/update a note to the task
^[^\r\n]*$
Successful Task Note creation/update
const response = await fetch('https://www.taskade.com/api/v1/projects/{projectId}/tasks/{taskId}/note', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "type": "text/plain", "value": "text" }), }); const data = await response.json();
{ "ok": false, "item": { "type": "text", "value": "text" } }