I am working on a Java application to connect with HP ALM 12 using their REST API programmatically and have been hitting some road blocks as they don't seem to provide any examples for that in their documentation, unless I am looking at the wrong place.
So far, I have been able to do the following:
- Authenticate a user
- Get a list of all existing entities, defects
Has anyone been able to do the following
- Get a list of fields (for any new defect) in any particular release
- Determine if those fields are required (mandatory) or not
- Then based on that create a new defect and save that defect in ALM using the REST API ?
- Get a confirmation for the created defect, such as a Defect ID.
Any example or suggestions are welcome.