Last updated 4 months ago
Create a task in a project
curl -L \ --request POST \ --url 'https://www.taskade.com/api/v1/projects/{projectId}/tasks/' \ --header 'Content-Type: application/json' \ --data '{ "tasks": [ { "contentType": "text/markdown", "content": "text", "taskId": "null", "placement": "afterbegin" } ] }'
{ "ok": true, "item": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "text": "text", "parentId": "123e4567-e89b-12d3-a456-426614174000", "completed": true } ] }