Folder Placement Information
In Wireless Manager, you can have a graphical representation of the placement of locations and devices with respect to one another for the given location. This is called a location layout. Layout for a location folder represents the geographical placement of the sub-locations. The folder Placement Information API call provides information of location tags and placed location on a folder.
API Calls
/V5/layouts/placement
/V5/layouts/placement
JSON Table
Attribute | Data Type | Description |
---|---|---|
type | ||
location | ||
location/type | ||
location/id | ||
location/parentId | ||
location/name | ||
location/accessibleToUser | ||
location/defaultLocation | ||
location/timezoneId | ||
location/locationTag | ||
location/venueId | ||
location/children | ||
locationTags | ||
locationTags/note | ||
locationTags/description | ||
locationTags/coordinates | ||
locationTags/coordinates/xCordinate | ||
locationTags/coordinates/yCordinate | ||
placedLocations | ||
placedLocations/location | ||
placedLocations/location/type | ||
placedLocations/location/id | ||
placedLocations/location/parentId | ||
placedLocations/location/name | ||
placedLocations/location/accessibleToUser | ||
placedLocations/location/defaultLocation | ||
placedLocations/location/timezoneId | ||
placedLocations/location/locationTag | ||
placedLocations/location/venueId | ||
placedLocations/location/children | ||
placedLocations/coOrdinates | ||
placedLocations/coOrdinates/xCordinate | ||
placedLocations/coOrdinates/yCordinate |
Sample JSON
{ "type": "folderplacementinfo", "location": { "type": "folderlocation", "id": { "type": "locallocationid", "id": 0 }, "parentId": null, "name": "Mojo Networks", "accessibleToUser": true, "defaultLocation": false, "timezoneId": "America/New_York", "locationTag": null, "venueId": null, "children": [{ "type": "locallocationid", "id": -1 }, { "type": "locallocationid", "id": 1 }] }, "locationTags": [{ "note": "Floor Layout", "description": "Layout Placement Info", "coordinates": { "xCordinate": 445.47759932375317, "yCordinate": 158.9180050718512 } }], "placedLocations": [{ "location": { "type": "folderlocation", "id": { "type": "locallocationid", "id": 1 }, "parentId": { "type": "locallocationid", "id": 0 }, "name": "India", "accessibleToUser": true, "defaultLocation": false, "timezoneId": "Asia/Kolkata", "locationTag": null, "venueId": null, "children": [{ "type": "locallocationid", "id": 27 }, { "type": "locallocationid", "id": 12 }] }, "coOrdinates": { "xCordinate": 681.0, "yCordinate": 267.0 } }] }