Posting works well with all the fields except the multiselect field.
{ “values”: { “contractors_name”: “bvgfb gfnb”, “contact_email”: “mhjmh@vgf.com”, “pricing”: [ { “name”: “123”, “type”: “123” }, { “name”: “456”, “type”: “456” } ] } }
Hey @HJain8,
The “type” for multi-select should be set as “option”.
So your body should look more like:
{
"values":
{
"contractors_name": "bvgfb gfnb",
"contact_email": "mhjmh@vgf.com",
"pricing": [{ "name": "123", "type": "option" }, { "name": "456", "type": "option" }]
}
}
The “name” of the options should match the internal value of those multi-select options as well.
Hope this helps!