I successfully updated a simple choice field using the data below:
var record = {
"applyType":12345
};
but when I update a multiple choice field using below data, I keep getting error:
var record = {
"applyReasons":[10, 15, 19]
};
How to update a multiple choices field using web api?
I use below data succesfully updated the multiple choices field.
var record = {
"applyReasons":"10,15,19"
};
Fubar
62
Super User 2025 Season 2
Lucas001
48
Super User 2025 Season 2
KevinGador
44
Super User 2025 Season 2