Hi all,
I have a metadata template with a multi select field called series. It contains 3 value: 'A', 'B', 'C'] so user can select any of the value combo. I was able to assigned a few value to a few file through Box UI ok. When I query the file meta data, I get its array value assigned correctly. I'm having problem searching for it through API (I know web UI doesn't work: https://community.box.com/t5/Business-Apps-Forums/Searching-Metadata-Templates-with-Dropdown-Multiple-Select/td-p/57366), but was wondering if searching for metadata multi-value work through API?
I'm following this guide: https://developer.box.com/reference#searching-for-content
I have tried any of the 3 below method for series, always get 400 error. I tried using both box-sdk for node, and tried it manually in Postman directly with url encoded. Nothing works so far.
mdfilters: l{
templateKey: 'myTemplate',
scope: 'enterprise',
filters: {
series: 'A',
series: e'A'],
series: {
gt: 'A',
lt: 'A'
}
}
]
Thanks,
Kien