Users Manual
Parameters
• node (string) – name of the node (required)
Request JSON Array of Objects
• parameters (Parameter) – array of parameters (required)
Request Headers
• Accept – application/json
Response Headers
• Content-Type – application/json
Status Codes
• 200 OK – successful operation (returns array of Parameter)
• 404 Not Found – node not found
• 403 Forbidden – Parameter update forbidden, e.g. because they are locked by a running
GigE Vision application or there is no valid license for this component.
• 400 Bad Request – invalid parameter value
Referenced Data Models
• Parameter (Section 8.2.3)
GET /nodes/{node}/parameters/{param}
Get a specific parameter of a node.
Template request
GET /api/v1/nodes/<node>/parameters/<param> HTTP/1.1
Host: <rcvisard>
Sample response
HTTP/1.1 200 OK
Content-Type: application/json
{
"default": "H",
"description": "Quality, i.e. H, M or L",
"max": "",
"min": "",
"name": "quality",
"type": "string",
"value": "H"
}
Parameters
• node (string) – name of the node (required)
• param (string) – name of the parameter (required)
Response Headers
• Content-Type – application/json
Status Codes
• 200 OK – successful operation (returns Parameter)
• 404 Not Found – node or parameter not found
Referenced Data Models
8.2. REST-API interface 135