I am looking to pull all of the tasks from a set of boards that have a specific string in the title of the board in python. As I understand, I would need to:
- Query all of the boards
- Take the result and cut it down to the boards that have the string in the name
- Extract the IDs from that board.
- Feed those back into the Monday.com API to query all of the tasks that I want.
I see basic information on querying the API. but no good examples of how to parse the data that is returned in Python. I have done a lot of googling and tried a fair number of things. Is there some easier way to handle this that I am missing?