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();