Hello,
I have been working with the Monday API with some success. I have run into difficulty with change_multiple_column_values. Here is the error:
message: “Parse error on “: {” (STRING) at G1, 107]”, the character at 107 is a semicolon
I have a working query in POSTMAN
mutation {
change_multiple_column_values (item_id: 22222222, board_id: 1111111111, column_values: "{\\"date4\\": {\\"date\\":\\"1993-08-27\\"},\\"text9\\": \\"Barney Rubble\\",\\"text0\\": \\"Corporate\\",\\"link\\":{\\"url\\" : \\"https://support.company.com/app/itdesk/ui/requests/109348000039391139/details#\\", \\"text\\":\\"Original Request\\"} }") {
id
}
}
So I took that POSTMAN query and escaped it to use in a C# console app
{\\"query\\":\\"mutation {change_multiple_column_values (item_id: 22222222, board_id: 1111111111, column_values: \\\\\\"{\\\\\\"date4\\\\\\": {\\\\\\"date\\\\\\":\\\\\\"1993-08-27\\\\\\"},\\\\\\"text9\\\\\\": \\\\\\"Barney Rubble\\\\\\",\\\\\\"text0\\\\\\": \\\\\\"Corporate\\\\\\",\\\\\\"link\\\\\\":{\\\\\\"url\\\\\\" : \\\\\\"https://support.company.com/app/itdesk/ui/requests/109348000039391139/details#\\\\\\", \\\\\\"text\\\\\\":\\\\\\"Original Request\\\\\\"} }\\\\\\") {id}}\\"}
I just can’t get it to run successfully in my C# app. Can anyone see where I might have gone wrong?
Thank you!
Cliff