Last updated 21 days ago
Get the date of a task
Task Date
const response = await fetch('https://www.taskade.com/api/v1/projects/{projectId}/tasks/{taskId}/date', { method: 'GET', headers: {}, }); const data = await response.json();
{ "ok": true, "item": { "start": { "date": "text", "time": "text", "timezone": "text" }, "end": { "date": "text", "time": "text", "timezone": "text" } } }