Send URL type Column Value to Monday.com

Hi All,

I am trying to send the Link type column value to Monday.com but it is giving an undefined error.

The Web URL has some special characters as well other than a slash ‘/’.

Example:-

“{\“url\”:\“https://monday.com/developers/v2#column-values-section-link\\",\\“text\\”:\\"go to monday API!\”}”

Everything is working fine if I remove the above thing from the whole query but not if I include it in my query.

Thanks

Having same issue as well. Even updating with the same values as are returned by API throws an error
“error_code”: “ColumnValueException”,
“status_code”: 400,
“error_message”: “change_column_value invalid value”,
“error_data”: {
“column_value”: “{"url:"=>"http://google.com", "text"=>"test"}”,
“column_type”: “LinkColumn”
}

returns

“error_code”: “ColumnValueException”,
“status_code”: 400,
“error_message”: “change_column_value invalid value”,
“error_data”: {
“column_value”: “{"url:"=>"http://google.com", "text"=>"test"}”,
“column_type”: “LinkColumn”
}

I could actually send arbitrary property names and they will be written into the field (not displayed though). Text property throws an error regardless of what its content is.

mutation($board_id: Int!, $item_id: Int) {
change_column_value (
board_id: $board_id,
item_id: $item_id,
column_id: “sfdc_link”,
value: “{"url:":"http://google.com", "stupidfield":"test"}”
) {
id
}
}