POST getDeviceByCircle
Get list of device information
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| parameters | PointCoordinates of the center of the circle, Radius of the circle and the Login/Password for authentication and rights |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"pointCoordinates": {
"latitude": 1.1,
"longitude": 2.1
},
"radius": {
"@unit": "SM",
"text": 2.1
},
"credentials": {
"login": "sample string 1",
"password": "sample string 2"
}
}
application/xml, text/xml
Sample:
<NCADeviceByCircleParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<credentials>
<login>sample string 1</login>
<password>sample string 2</password>
</credentials>
<pointCoordinates>
<latitude>1.1</latitude>
<longitude>2.1</longitude>
</pointCoordinates>
<radius>
<Value>2.1</Value>
<unit>SM</unit>
<unitSpecified>true</unitSpecified>
</radius>
</NCADeviceByCircleParameters>
Response Information
NCADevicePublication
Response body formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.