Details:
Multi-select List Field can be updated for individual Materials at the Asset/Batch level via API by providing a JSON list. To update a Multi-select list (e.g: "MultiSelectList") with values "listvalue1" and "listvalue2", we need to specify in the request body as shown below:
{
"data": [
{
"attributes": {
"name": "MultiSelectList",
"values": [
"listvalue1",
"listvalue2"
]
}
}
]
}
Comments
0 comments
Article is closed for comments.