v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
FloorPlan

Place devices over the FloorMap

This API is utilized to position the devices on a FloorMap for a specific floor ID. <br>The devices are required to be assigned to the floor before being placed. GeometryRelative should be in meters in this version.

post/network-monitoring/v1/sitemaps/{site-id}/network-devices-deployed

Request body

Example request

{
  "devicesOnFloor": [
    {
      "floorId": "16a-aad7-4070-8a19-fd6b8e1ff012",
      "devices": [
        {
          "serial": "AP00000001",
          "isAnchor": true
        }
      ]
    }
  ]
}

Response

Placed the devices over the FloorMap successfully.

codestring const

status code.

statusstring const

final status.

messagestring const

status message.

Example response

{
  "devicesPlacementResults": [
    {
      "serial": "AP00000001",
      "lpId": "qwf2bd91-de81-4097-8420-3ca7f87450fd",
      "floor": "fff2bd91-de81-4097-8420-3ca7f87450fd",
      "statusCode": "SUC-001",
      "statusMessage": "Device placed successfully"
    }
  ],
  "code": "SUC-001",
  "status": "SUCCESS",
  "message": "Successfully placed"
}