Is there a way to filter a reportable REST URL by the value of a custom attribute?
![]()
workitem/workItem[stringExtensions/value="foo"]/id results in "Error 500: CRRED0135E: Illegal filter. The field 'workitem/stringExtensions/value' may not be used in a filter because it returns multiple values."
Based on the discussion in 158711 I suspect the answer is no. I'm trying to create a document in RPE and I only want to include workitems that have a specific value set for a custom attribute. Does anyone know of another approach I could take? |
2 answers
![]()
I did not find any way to do this via REST, so used a Condition Script Expression (key == "bar" && value == "foo") in a nested query (under a workitem/workitem/stringExtensions query) within RPE to filter work items by a custom attribute key/value.
|