Is there a way to retrieve a camera stream resolution in the REST API Gateway?
According to the openAPI.yml file there an endpoint : https://[server-address]/API/rest/v1/cameras/{id}/streams
in which you can retrieve all camera streams with a response like this :
{
"array": [
{
"displayName": "Streams",
"stream": [
{
"displayName": "JPEG - streamed",
"name": "JPEG - streamed",
"streamReferenceId": "87D3D9D2-20B5-4560-8AEA-0D757135A4A0",
"liveDefault": true,
"liveMode": "WhenNeeded",
"recordTo": "16ce3aa1-5f93-458a-abe5-5c95d9ed1372",
"defaultPlayback": true,
"useEdge": true
}
],
"relations": {
"self": {
"type": "streams",
"id": "e2537088-a892-43d8-885d-a454b5f98869"
},
"parent": {
"type": "cameras",
"id": "638bc8f1-cf28-4329-b8e6-5bba37bdb48f"
}
}
},
]
}
but I don’t see a specific stream resolution anywhere. Is there a different endpoint for this?