Is the header variable for API_Version. supported in the python environment?
I was trying to set up an item query that works in the previous enviornment.
tried setting
apiUrl = “https://api.monday.com/v2”
headers = {
“Authorization” : apiKey,
‘API-Version’ : ‘2023-10’
}
The query then fails with
errors: [{‘message’: ‘Type mismatch on variable $myBoardID and argument ids ([Int]! / [ID!])’, …
I found an older reference to this error “API Error - Dimension mismatch”
but that doesnt help.
Want to first confirm that the header approach will work in Python?
The documentation seems to focus on javascript.