To retrieve the Scenario ID from a test report, use the Masters API, which will retrieve various test report details in a JSON format. How to get the Master ID?
URL
https://a.blazemeter.com/api/v4/masters/<masterId>
cURL (Master)
curl -X GET https://a.blazemeter.com/api/v4/masters/<masterId> -H "Content-Type: application/json" --user 'id:secret'
Example Response
"scenariosMapping": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "JMX",
"isEndUserExperience": false
},
{
"id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "EUX",
"isEndUserExperience": true
}
0 Comments