List Private Locations Supported Browsers
API Explorer: /private-locations/browsers
The sample code returns a list of private locations tied to the API key that was used.
The returned list contains each private location's location Id (shows up as id in the response), name, and supported browser versions.
List Private Locations Supported Browsers
curl 'https://a.blazemeter.com/api/v4/private-locations/browsers' \
--user 'api_key_id:api_key_secret'
List Private Locations Supported Browsers Parameters
All timestamps are in UNIX Epoch time.
Parameters
-
accountIdintegerThe
accountIdyou are wanting to get the list of private locations and their supported browsers -
workspaceIdintegerThe
accountIdyou are wanting to get the list of private locations and their supported browsers -
types[]stringDenotes what type of private location you want returned. The accepted values are as follows:
small- This represents a Shared private location typelarge- This represents a Dedicated private lcoation type
Also see: Pagination and Sorting
List Private Locations Supported Browsers Response Attributes
Attributes
-
idstringThe
location Idof the private location -
namestringThe name of the private location
-
browserVersionsobjectAll browser versions information
Response200 OK
{
"limit": 10,
"skip": 0,
"total": 0,
"hidden": 0,
"api_version": 4,
"error": null,
"result": [
{
"id": "harbor-5da77211ea73e4f27d7cd6a5",
"name": "My OPL",
"browserVersions": {
"firefox": [
"65"
],
"chrome": [
"69"
]
}
},
{
"id": "harbor-5da782b9813af817563aada3",
"name": "My CI OPL",
"browserVersions": {
"firefox": [
"69",
"68",
"67",
"66",
"65",
"64",
"63",
"62",
"61",
"60",
"59"
],
"chrome": [
"74",
"73",
"72",
"71",
"70",
"69",
"68",
"67",
"66",
"65"
]
}
},
{
"id": "harbor-5da782dbaef98819f87ed165",
"name": "My Load Engine Location",
"browserVersions": {
"firefox": [
"65"
],
"chrome": [
"69"
]
}
}
],
"request_id": "5e0a829838fc0"
}