Is it possible with the API to get_tasks, but only the tasks that have been changed? As in if I have “My Awesome Task” (created at 8:01AM), status incomplete and “My Other Awesome Task 2” (created at 8:02AM), status incomplete. Then at 8:50AM, “My Awesome Task” changes to Complete and I change the name to “My Completed Awesome Task”. How would I only get “My Complete Awesome Task” in a list of tasks.
Currently I declare some client with a key, then find all tasks related to a certain project.
As follows:
all_tasks = client.tasks.find_by_project(project_id)