It's all about the answers!

Ask a question

REST API for RTC


Louis Liu (11111) | asked Feb 23 '17, 8:56 a.m.

Is there any REST api or something like that to get the work items data in RTC?

Or any where I can get the instructions for the REST API?

One answer



permanent link
Subramanya Prasad Pilar (4.6k14) | answered Feb 23 '17, 10:54 a.m.
edited Feb 23 '17, 10:58 a.m.

Yes. RTC provides a REST API. To get WorkItem details, the URL would be
https://server:port/ccm/rpt/repository/workitem

To access individual WorkItem, you can use either of these:
https://server:port/ccm/rpt/repository/workitem/workItem/id/123?fields=workitem/workItem/(description|summary|severity|state)
https://server:port/ccm/rpt/repository/workitem?fields=workitem/workItem[id=123]/(description|summary|severity|state)

For details/documentation, you can refer https://jazz.net/wiki/bin/view/Main/ReportsRESTAPI

Your answer


Register or to post your answer.