Is it possible to operate ETM Project Area with EWM Operation Participant?
I'm developing an operation participant that runs with saving work items.
When the work item is saved, members are added to the Project Area based on the information in the work item.
I was able to confirm that I could add members to the EWM Project Area, but I'm not sure if I could add members to the ETM Project Area.
If anyone knows if it can be done on the server side Java API, please help..
**I have confirmed that there is a possibility on the client side Java API & REST API by referring to the following.
How to add members to Project Area in Rational Design Manager programmatically
Bulk Manipulation of Process Area Membership
2 answers
Hi Musashi,
You can do a GET on https://<hosy>:<port>/qm/process/project-areas to retrieve the list of QM projects and then do a GET on https://<hosy>:<port>/qm/process/project-areas/<project_area_itemID(UUID)>/members
to get the list of members assigned a particular project area.
The POST method will allow you to add members to the project area.
Thanks,
Monika Rajput
Did you try to use the Java API against ETM? As far as I am aware, the same Java API should work for ETM, because that part of the API is shared. Unless there is something that prevents the APIU from working on ETM, it is worth a try. I do not know if there are any special authentication requirements.