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"
},...
]
}