POST api/v1/devices/deids/sendvalues
Sends data group element values to the device
CygNet Access Requirements
CygNet ACS security: BRDGAPI ACCESS 3
CygNet Bridge API license type: Control
Request Information
URI Parameters
None
Body Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| facilityTag |
Facility tag linked to the desired device to send data to |
string |
Required |
| dataGroupType |
The data group type |
string |
Required |
| dataGroupOrdinal |
The data group ordinal |
integer |
Required |
| dataElementValues |
List of data group element values to send to the device |
Collection of DataElementValueDTO |
Required |
| fromDeviceParameters |
Parameters that may be required when getting from the device; usually an empty string is passed |
string |
None |
| toDeviceParameters |
Parameters that may be required when sending to the device; usually an empty string is passed |
string |
None |
Request Formats
application/json, text/json
Sample:
{
"facilityTag": "CYGSITE.UIS::PINE_RD",
"dataGroupType": "AGAParams",
"dataGroupOrdinal": 1,
"dataElementValues": [
{
"dataElement": {
"byUdc": false,
"elementId": "Ethane"
},
"value": "8675309"
},
{
"dataElement": {
"byUdc": true,
"elementId": "CFGETHN"
},
"value": "42"
}
],
"fromDeviceParameters": "",
"toDeviceParameters": ""
}
Response Information
Resource Description
None