Can we fetch history of ETM Artifact for a specific time range
Can we fetch the history of testplan within the given time range using the below API.
https://localhost/com.ibm.rqm.integration.service.IIntegrationService/history?resourceId=resources/paName/testplan/urn:com.ibm.rqm:testplan:3062
One answer
The documentation is here: https://jazz.net/wiki/bin/view/Main/RqmApi .
It looks like there is a way to get the history for one or more items. I don't see selectors for a time range. How this usually works is as follows.
- You get a page with the data.
- You process that page e.g. ignoring data outside your date range.
- If there is more data, there is information how to get the next page.
- You request the next page and go to 1.