Last updated 1 year ago
Create a project in a folder
Successful Project creation
const response = await fetch('https://www.taskade.com/api/v1/projects', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "folderId": "text", "contentType": "text/markdown", "content": "text" }), }); const data = await response.json();
{ "ok": false, "item": { "id": "text", "name": "text" } }