Last updated 5 months ago
Get all workspaces for a user
Workspaces
GET /api/v1/workspaces HTTP/1.1 Host: www.taskade.com Accept: */*
{ "ok": true, "items": [ { "id": "text", "name": "text" } ] }
Get all folders for a workspace
Folders
GET /api/v1/workspaces/{workspaceId}/folders HTTP/1.1 Host: www.taskade.com Accept: */*
Create a project in a workspace
text/markdown
Successful Project creation
POST /api/v1/workspaces/{workspaceId}/projects HTTP/1.1 Host: www.taskade.com Content-Type: application/json Accept: */* Content-Length: 48 { "contentType": "text/markdown", "content": "text" }
{ "ok": true, "item": { "id": "text", "name": "text" } }