I am trying to update a ticket column. I am getting a 200 response for the code below but it does not reflect on the ticket itself. What gives?
apiUrl = "https://api.monday.com/v2"
headers = {"Authorization" : apiKey}
query= 'mutation {change_simple_column_value(item_id: 3601557877, board_id: 3543199429, column_id: "Triage Score", value: "99") }'
data = {'query' : query}
r = requests.post(url=apiUrl, json=data, headers=headers)