Last updated 4 months ago
Get all workspaces for a user
curl -L \ --url 'https://www.taskade.com/api/v1/workspaces'
{ "ok": true, "items": [ { "id": "text", "name": "text" } ] }
Get all folders for a workspace
curl -L \ --url 'https://www.taskade.com/api/v1/workspaces/{workspaceId}/folders'
Create a project in a workspace
text/markdown
curl -L \ --request POST \ --url 'https://www.taskade.com/api/v1/workspaces/{workspaceId}/projects' \ --header 'Content-Type: application/json' \ --data '{ "contentType": "text/markdown", "content": "text" }'
{ "ok": true, "item": { "id": "text", "name": "text" } }