Autimate Exporting user from RTC Project area with roles
7 answers
Hi Abraham,
I am not able to access the link https://:/jazz/process/project-areas//roles
Please provide me instructions for the same.
Regards,
Dhruva
I am not able to access the link https://:/jazz/process/project-areas//roles
Please provide me instructions for the same.
Regards,
Dhruva
Here is the the relavent data from that forum post:
The best way to retrieve roles is that using process rest service, you don't need to search users, but just provide the project area or team area item id.
Here are some samples to get roles
from a project area:
https://:/jazz/process/project-areas//roles
from a team area:
https://:/jazz/process/project-areas//team-areas//roles
The best way to retrieve roles is that using process rest service, you don't need to search users, but just provide the project area or team area item id.
Here are some samples to get roles
from a project area:
https://:/jazz/process/project-areas//roles
from a team area:
https://:/jazz/process/project-areas//team-areas//roles
Comments
HI @asweiss,
I used this for retrieving the roles assigned to a particular user:
If I want to retrieve for every user in the project area, how should I change the url?
Thanks.
Hi ,
I will right click on RTC project area-> Genearet run time report, this will give all members with user id and role.
Is it possible to automate the above process.
I will right click on RTC project area-> Genearet run time report, this will give all members with user id and role.
Is it possible to automate the above process.
If you use the following rest call, you will get the list of members in the project area
https://localhost:9443/ccm/service/com.ibm.team.process.internal.service.web.IProcessWebUIService/projectAreaByUUIDWithLimitedMembers?processAreaItemId=_Ku7esLtYEeKH-7l1udLOzQ
_Ku7esLtYEeKH-7l1udLOzQ is the itemID for the JUnit project in my test bed, The output will look like:
and as noted above, if the goal is to automate the "Generate Run TIme report", you will need to create a custom application using either the java api or rest api.
https://localhost:9443/ccm/service/com.ibm.team.process.internal.service.web.IProcessWebUIService/projectAreaByUUIDWithLimitedMembers?processAreaItemId=_Ku7esLtYEeKH-7l1udLOzQ
_Ku7esLtYEeKH-7l1udLOzQ is the itemID for the JUnit project in my test bed, The output will look like:
and as noted above, if the goal is to automate the "Generate Run TIme report", you will need to create a custom application using either the java api or rest api.