Does anyone know how to write the Description fields using the FieldUpdate API? In this case, I'm trying to write to description 1 & 2 in ICSC, but it's not working. I've tried "descrip1" and "descrip_1" but no luck.
Thanks!
Please try descrip[1] and descrip[2].
Thanks! That works!
You would address the fields as descrip[1] and descrip[2]. So you're update section of the API would look like:
"update": { "descrip[1]": "Value of 1",
"descrip[2]": "Value of 2" }
This should be the case for any "array" field, not just the description fields.
Whoops! Noticed I was too late after I posted!