Hey, I have a problem with Monday API version 10 in python. Since it changed on February 15, mine python code doesn’t work anymore. The error is shown at this part of the code. Maybe you now how to fix this problem?:
.q_columns =
‘{boards(limit:10000 state:all) {id name state owner{id} columns {id title type}}}’
data_columns = {‘query’: q_columns}
r_columns = requests.post(url=apiUrl, json=data_columns,
headers=headers)
columns_json = r_columns.json()
df_columns = pd.DataFrame(columns_json[‘data’][‘boards’])
df_columns.head()