getNodes
POST
/v2/openapi/video/nodesGet all streaming nodes supported by the current server
Request
None
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
integer | null
optional
data
object (ApiVideoNodesVO)
optional
liveNodes
array[object (ApiNodesVO) {3}] | null
optional
Node configurations that can be used for live streaming
talkNodes
array[object (ApiNodesVO) {3}] | null
optional
Node configurations that can be used for recording
replayNodes
array[object (ApiNodesVO) {3}] | null
optional
Node configurations that can be used for replay
msg
string | null
optional
Example
{
"code": 0,
"data": {
"liveNodes": [
{
"default": false,
"nodeValue": "",
"nodeOrder": ""
}
],
"talkNodes": [
{
"default": false,
"nodeValue": "",
"nodeOrder": ""
}
],
"replayNodes": [
{
"default": false,
"nodeValue": "",
"nodeOrder": ""
}
]
},
"msg": ""
}
Last modified: a month ago