Users Manual

node (string) name of the node (required)
Response Headers
Content-Type application/json
Status Codes
200 OK successful operation (returns NodeInfo)
404 Not Found node not found
Referenced Data Models
NodeInfo (Section 8.2.3)
GET /nodes/{node}/parameters
Get parameters of a node.
Template request
GET /api/v1/nodes/<node>/parameters?name=<name> HTTP/1.1
Host: <rcvisard>
Sample response
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"default": 25,
"description": "Frames per second in Hz",
"max": 25,
"min": 1,
"name": "fps",
"type": "float64",
"value": 25
},
{
"default": true,
"description": "Switching between auto and manual exposure",
"max": true,
"min": false,
"name": "exp
_
auto",
"type": "bool",
"value": true
},
{
"default": 0.007,
"description": "Maximum exposure time in s if exp
_
auto is true",
"max": 0.018,
"min": 6.6e-05,
"name": "exp
_
max",
"type": "float64",
"value": 0.007
}
]
Parameters
node (string) name of the node (required)
Query Parameters
name (string) limit result to parameters with name (optional)
8.2. REST-API interface 133