Hello,
I am having some trouble changing the values of items via API. I am trying to change three columns, the name, duration, and number26. My request looks like this:
{
"query":
"mutation {change_multiple_column_values( item_id:6062965817, board_id:6062799445,
column_values: "{
"duration":"5",
"numbers26":"3",
"name":"Receive (LV PCBA Parallel Path)"
}" ) {id}
}"
}
When I submit the request, I get an odd error about the column not existing for the board:
{
"error_code": "InvalidColumnIdException",
"status_code": 200,
"error_message": "This column ID doesn't exist for the board",
"error_data": {
"column_id": "duration",
"board_id": null,
"error_reason": "store.monday.automation.error.missing_column"
}
}
This is a subitem in the board and have verified that duration is the name of the column using the developer tools:
Can someone help me figure out how to update this column?
- I verified the request just changing the name, and that worked.
- Should the board_id be null in the response? That seems odd.
- Is my syntax correct for updating multiple items concurrently?
- Is the process for editing subitems different than editing items?
Thank you for any help!
E