const response = await fetch('https://www.taskade.com/api/v1/projects/{projectId}/tasks/{taskId}/date', {
method: 'PUT',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"start": {
"date": "text"
},
"end": {
"date": "text"
}
}),
});
const data = await response.json();