Hello,
You probably meant to ask how to get the trend report using Performance Center REST API.
There are a few methods to achieve that, depending on what information you seek:
to get only general information about the report, which runs are included in it, and which run is used as the report baseline, you can send the following request:
GET http://{PC_SERVER}/loadtest/rest/domains/{DOMAIN_NAME}/projects/{PROJECT_NAME}/TrendReports/{REPORT_ID}
If you want to get the report data itself (measurements etc.) you can get a .pdf representation by sending the following request:
GET http://{PC_SERVER}/loadtest/rest/domains/{DOMAIN_NAME}/projects/{PROJECT_NAME}/TrendReports/{REPORT_ID}/data
both API's should work after authentication.
Regards,
Oren Pelzman,
Performance Center R&D.