HP ALM REST Api Throughput

As the title says, I need to get traceability information for my requirements using hp alm rest api. Which endpoint should I use? The documentation seems to be pretty much non-existent! I read somewhere that the next endpoint should return a list of all available endpoints, but I only get "Not Found" -> / qcbin / rest / resource-list

So how to work with this api ???

+3


source to share


2 answers


to be honest, I didn't receive exactly your request. In particular, to work with the REST api, you must use a valid login before sending any other requests!

Getting started with HP is quite helpful, but it can be different if you have a previous version. Link for 12.50:

http://alm-help.saas.hpe.com/en/12.50/api_refs/Performance_Center_REST_API/Performance_Center_REST_API.htm

Taking a look there and I could not understand the command you were talking about. Here is another link from HP where I found that, again, it mentions the login steps:

https://community.saas.hpe.com/t5/All-About-the-Apps/A-user-guide-to-REST-API-with-HPE-ALM/ba-p/223878#.WVo2wVElGpo



Anyway, if you are new to HP QC REST API, I would suggest you create your own module.

I created a small module to send REST requests to HP ALM using python. The support module is called "requests". I guess if you are familiar with android then you should be familiar with python / java as well. Lots of answers to your problems that you will find have already been answered anyway in SO.

Once logged in correctly, you should be able to easily send a new REST message and get your target. Have a nice day! ciao ciao!

enter image description here

+1


source


The REST API (at least until 12.55 am) does not support read tracking of requests. But you can access the database directly. All traceability information is stored in a table REQ_TRACE

.



0


source







All Articles