v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
FloorPlan

Retrieves placed (planned) devices

Returns list of placed (planned) devices on the FloorMap. Devices which are placed on the floor has location coordinates (x,y). those x and y are returned in meters in the response

get/network-monitoring/v1/sitemaps/{site-id}/network-devices-planned

Query parameters

filterstring const required

OData Version 4.0 filter string (limited functionality). Supports only 'eq' operations ('gt', 'ge', 'lt', 'le' and 'in' are NOT supported). Supports only 'and' conjunction ('or' and 'not' are NOT supported). Supported filter fields are: floorId and buildingId.

OData 4.0 filter must be provided with at least floorId.

limitinteger

Specifies the number of results to be returned.

nextstring const

Specifies the pagination cursor for the next page of resources.

Response

Returns list of placed planned devices on the FloorMap.

offsetinteger

Specifies the offset of the returned page.

countinteger required

The number of objects returned in the current list.

totalinteger

The total number of objects contained in the datastore.

Example response

{
  "response": {
    "code": "SUC-001",
    "status": "SUCCESS",
    "message": "success."
  },
  "items": [
    {
      "deviceName": "AP 001",
      "type": "Access Point",
      "id": "AP00000021",
      "lpFeatureType": "POINT",
      "accesspointProperties": {
        "model": "AP-635",
        "partNumber": "JX973A",
        "radios": [
          {
            "txPower": "18 Dbm",
            "band": "5 GHz",
            "channel": "5 GHz",
            "number": 1
          }
        ]
      }
    }
  ],
  "count": 100,
  "total": 200
}