POST api/SigfoxMultiGuard?Data={Data}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MultiGuardData| Name | Description | Type | Additional information |
|---|---|---|---|
| Battery | decimal number |
None. |
|
| Temperature | decimal number |
None. |
|
| Humidity | integer |
None. |
|
| Lux1 | integer |
None. |
|
| Lux2 | integer |
None. |
|
| db1 | integer |
None. |
|
| db2 | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Battery": 1.0,
"Temperature": 2.0,
"Humidity": 3,
"Lux1": 4,
"Lux2": 5,
"db1": 6,
"db2": 7
}
application/xml, text/xml
Sample:
<SigfoxMultiGuardController.MultiGuardData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/M2senseWebApiProject.Controllers"> <Battery>1</Battery> <Humidity>3</Humidity> <Lux1>4</Lux1> <Lux2>5</Lux2> <Temperature>2</Temperature> <db1>6</db1> <db2>7</db2> </SigfoxMultiGuardController.MultiGuardData>