curl --request GET \
--url https://cloud.kaneo.app/api/project \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"workspaceId": "<string>",
"slug": "<string>",
"icon": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"isPublic": true,
"archivedAt": null
}
]Get all projects in a workspace
curl --request GET \
--url https://cloud.kaneo.app/api/project \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"workspaceId": "<string>",
"slug": "<string>",
"icon": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"isPublic": true,
"archivedAt": null
}
]Bearer token authentication
Was this page helpful?