Hi,
I want to create a new work item in Track & Plan. I managed to get the project area for my application:
curl -k -b file -c file https://:@hub.jazz.net/ccm08/process/project-areas/_cqZlJx7LEeWrnMDj3ue0kw
But I don't see any way to see the existing work items or create new ones. How do I do that?
Thanks, Ori
Answer by Sean Wilbur (904) | Jul 01, 2015 at 09:58 AM
I answered a similar question a while back: https://developer.ibm.com/answers/questions/174137/is-there-some-sort-of-api-for-the-track-and-plan.html#answer-174168
But the just of it is to access the full REST API for accessing and working with the server as a client. Checkout the wiki for an introduction (don't mind the version listed as 2.0, the API stabilized around version 2 and has not changed drastically since, so all this content still applies)
https://jazz.net/wiki/bin/view/Main/RtcSdk20
It has full curl examples of what you are trying to do here: https://jazz.net/wiki/bin/view/Main/ResourceOrientedWorkItemAPIv2
-Sean