Hello. I’m trying to build my app with using asana api, but unfortunately I ran into problems with information in api documentation and actual data from server. In Stories documentation I found that fields target and created_by contain field name, in examples above text I could see
{
"text": "added to Things To Buy",
"created_at": "2011-12-21T23:23:01.259Z",
"type": "system",
"id": 2001,
"created_by": {
"id": 5678,
"name": "Greg Sanchez"
}
}
but in fact from server came only id, gid and resource_type
{
"id": 857426476495644,
"gid": "857426476495644",
"created_by": {
"id": 837375362838,
"gid": "837375362838",
"resource_type": "user"
},
"target": {
"id": 857426475869664,
"gid": "857426475869664",
"resource_type": "task"
}
}