Is it possible to expand Asana's workspaces/<id>/projects to include created_at?

StackOverflow https://stackoverflow.com/questions/11024990

  •  14-06-2021
  •  | 
  •  

문제

I can't seem to find the magic keystrokes to make it happen. I'm using RestSharp in a .NET application if that makes a difference, but I'll be happy to know for now if it's even possible. If not, I can always pull the exact details for each project one at a time if I have to.

도움이 되었습니까?

해결책

(I work at Asana)

By default, sub-objects and objects returned from queries are returned in compact form, which usually means just the name and id. You can specify the fields you want using the opt_fields option to your query. See https://asana.com/developers/documentation/getting-started/input-output-options for more info.

In your case, try adding the query parameter opt_fields=created_at.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top