Hi All,
I’m trying to use the API to do an update in a People column, according to the documentation I’m using change_multiple_column_values (https://api.developer.monday.com/docs/people), the response is OK without errors but I’m not seeing the updates in the board.
This is the request I’m using:
mutation {
change_multiple_column_values(item_id:1825344611, board_id:1315570528, column_values: “{"csm" : {"personsAndTeams":A{"id":13991717,"kind":"person"}]}}”) {
id
}
}
I also try with this approach but the same OK result without any update in the board:
mutation {
change_simple_column_value(board_id: 1315570528, item_id: 1825344611, column_id: “csm”, value: “13991717”) {
id
}
}