GET /folders/{folderId}/projects doesn't include "name"
complete
yolk
a
GET /folders/{folderId}/projects
doesn't include the name
of the returned projects.an expected response according to the docs:
{
"ok": true,
"items": [
{
"id": "string",
"name": "string"
}
]
}
what is returned
{
"ok": true,
"items": [
{
"id": "PROJECT_ID_1"
},
{
"id": "PROJECT_ID_2"
},...
]
}
screenshots from the OpenAPI playground https://www.taskade.com/api/documentation/static/index.html#/Folder/folderProjectsGet and the gitbook docs https://developers.taskade.com/docs/api/folders/projects
Log In
r
ryantaskade
complete
HI everyone, this has been fixed, please do give it a try!
yolk
ryantaskade: Thanks! Confirming the fix on my side.