Does anyone have an example of what an Asset custom field qualifier for the WHD REST API would look like ?
Yes I do...
https://servicedeskURL/helpdesk/WebObjects/Helpdesk.woa/ra/Assets?username=fred&apiKey=cafebabecafebabecafebabecafe&qualifier=(customFields.definitionId=40 AND customFields.stringValue='05083')
Where the qualifier looks for
customFields.definitionId = an AssetCustomField with a DefinitionId of some value
AND
customFields.stringValue = the AssetCustomField with the definitionId specified above and the value specified herein.
In my example definitionId was 40 and stringValue was '05083'
Thanks to Rob for a 4 year old post that actually gave me the answer.
Were using api v1, I can search with simple qualifiers like
(customFields.definitionId=104 AND customFields.numberValue=1)
and
(customFields.definitionId=106 AND customFields.numberValue=1)
and I get back results. However, if I join these two with an AND I get back an empty array...
((customFields.definitionId=104 AND customFields.numberValue=1) AND (customFields.definitionId=106 AND customFields.numberValue=1))
How would the qualifier be properly structured in this case or is this a bug with v1?