Official comment
Hello,
As I understand the Clarizen API does return you each nested value under the relevant project field. For example:
Request:
/data/query?q=select CreatedBy.username, ProjectManager.username FROM Project
Response:
"CreatedBy": {
"id": "/User/5qzoas0xbitnyvshlcxmc14680",
"username": "sam.hupert"
},
"ProjectManager": {
"id": "/User/5qzoas0xbihe756lcxmc14680",
"username": "sam.hupert"
}
So the issue is parsing this response in a better way?