While creating a Monday API to connect our server to Monday board,
I want to create an item with values for each colums.
Problem : it works for every colum except for the rating one. I 've tried many syntax but no one works.
The official doc at https://api.developer.monday.com/docs/rating doesn’t help.
Does anybody know how to do it ?
Here is the code :
$column_values = [
'name' => 'xxxxxxxxxx',
'person' => '20985745',
'status' => '14',
// 'classement' => '5',
// 'classement' => '5/5',
// 'classement' => "{\\"rating\\":1}",
// 'classement' => "{\\"rating\\":1\\"}",
// 'classement' => "{rating:1}",
// 'classement' => rating:1',
// 'classement' => {'rating:1'},
// 'classement' => "{\\"rating:1\\"}",
// 'classement' => 'rating 1',
'classement' => 'rating\\:1',
'date' => '2021-09-01 16:30:00',
'texte' => 'Bonjour',
'statut_1' => '1',
'personnes' => '20791487',
'lien_internet' => 'http://google.fr salut'
];