Get items modified by a specific user after a certain date with EWM Reportable REST API
Hello,
One answer
The behavior of the API indicates that you have an issue with the URL or specification what information to return. Things to look at would be URL encoding.
It is important to understand the structure of the query that specifies what information is returned how. In your 2nd example you have a slash / instead of a pipe | in (id/summary) The slash indicates summary should be a nested property of ID, which is not correct.
I tried to summarize my experience with the EWM Reportable REST API here:
https://rsjazz.wordpress.com/2022/03/02/ewm-reportable-rest-api/
Comments
Hi Ralph,
Ok your example worked flawlessly.
https://elm.example.com:9443/ccm/rpt/repository/workitem?fields=workitem/workItem[id=1]/(itemHistory/(*)) shows the item history for me. With the filter, consider URL encoding and the like.
Note that the itemHistory is the history states of the work item. The filter only selects the set of work items. This set of work items is then used and the history for each item is displayed.
This makes no sense at all, I think:
https://elm.example.com:9443/ccm/rpt/repository/workitem?fields=workitem/workItem[modified%3E2023-11-29T10:00:00.000%2b0200andmodifiedBy=whatever]/(itemHistory/())