Am using PHP class (https://github.com/ajimix/asana-api-php-class) to fetch asana task through its API.
I want to fetch task created by specific user (am not talking about assignee here because my assignee gets change).
Currently, my approach is: get all task, get details of each task by looping and get its creator name and then filter through code, but this is taking hell lot of time to get complete as i have thousands of tasks.
Can you suggest for any easy way?