Specific Text in Comments
I want to get a list of tasks from a specific folder where a specific comment was made in the last 24 hours.
I don't see that there's a way to pass in a string/variable to the API get call for comments like you can for other items (tasks, projects)
e.g., something like this:
/folders/{folderId}/comments?text="hello" ... or ? text['hello']
/folders/{folderId}/comments?updatedDate {start,end}
Don't think I am able to use updatedDate on a folder level, and not sure about searching the text from the string either.
Does anything like that exist?
I don't know of a way to do this using the API, but can be easily done with whatever language you are using
first create a list of text contained in each comment, then search each item for a substring:
JS
python