Hi Friends,
I’m new to the Monday.com API and I noticed that if my column_values contains a Column Type that does not match what is on the board, the item is still created!
Example:
vars = {
"myItemName": "Hello everyone!",
"columnVals": json.dumps(
{
"status": {"number": "Closed"},
"label": {"text": "CADS"},
}
),
}
The Status and Label column are not Number or Text types. In this scenario, a new Item with a Title of ‘Hello Everyone!’ is created, and its columns are all blank. Is this intentional? I thought I would receive an error.