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?