Hello!
We’re trying to retrieve a list of tasks with an optional custom_field, but there is a problem that the request like this (https://app.asana.com/api/1.0/tasks?project={project_gid}&opt_fields=custom_fields) works ok only with multiple custom_fields field. It seems to me that this is due to the fact that the custom_fields field contains many sub-objects with separate custom fields.
But I need only one separate custom_field by it’s gid to be extracted.
What I’ve tried already:
- tasks?project={project_gid}&opt_fields=custom_fields.{gid}
- tasks?project={project_gid}&opt_fields=custom_fields.{field_name}
- tasks?project={project_gid}&opt_fields=custom_fields.{field_name}.{field_type}
- tasks?project={project_gid}&opt_fields=custom_fields.{gid}.{field_type}
But it does not work.
Thanks in advance for your help!