Last updated 21 days ago
Get all workspaces for a user
Workspaces
Get all folders for a workspace
Folders
Create a project in a workspace
Successful Project creation
const response = await fetch('https://www.taskade.com/api/v1/workspaces', { method: 'GET', headers: {}, }); const data = await response.json();
{ "ok": true, "items": [ { "id": "text", "name": "text" } ] }
const response = await fetch('https://www.taskade.com/api/v1/workspaces/{workspaceId}/folders', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('https://www.taskade.com/api/v1/workspaces/{workspaceId}/projects', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "contentType": "text/markdown", "content": "text" }), }); const data = await response.json();
{ "ok": true, "item": { "id": "text", "name": "text" } }