v1

latestOpenAPI 3.0.02026-07-243339471.1 MB
FloorPlan

Remove devices from the FloorMap

This API removes devices from the FloorMap without disassociating them from the floor.

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

Path parameters

site-idstring const required
Example:16a-aad7-4070-8a19-fd6b8e1ff012

The ID of the site where the device/FloorPlan is present.

Request body

Example request

{
  "removeDevices": {
    "floorId": "16a-aad7-4070-8a19-fd6b8e1ff012",
    "devices": [
      "AP00000001"
    ]
  }
}

Response

Removed the device location from the FloorMap. The assignment status will be maintained.

codestring const

status code.

statusstring const

final status.

messagestring const

status message.

Example response

{
  "deviceRemoveResults": {
    "successDevices": [
      "AP00000001"
    ],
    "failedDevices": [
      "AP00000002"
    ],
    "code": "SUC-001",
    "status": "SUCCESS",
    "message": "Success"
  },
  "code": "SUC-001",
  "status": "SUCCESS",
  "message": "Success"
}