Hi, I’m using the asana python API to extract tasks and their respective custom field values. I am able to only get the name of the task and the GID but no other custom field values are returned.
I have tried to use the opt_fields and I have tried opt_expand to no success.
api_client = ApiClient()
client = api_client.get_auth_client(use_client_access_token=True)
params = {
"project":"##############",
"opt_expand":"custom_fields, flat",
"limit":"1",
}
tasks = client.tasks.find_all(params)