List all Zones

List all floorplan wise zones

Get all floorplan wise zones

GET https://<baseurl>/v1/organization/floorplan/zones/@clientUUID/@userUUID/@floorplanUUID

Path Parameters

Name
Type
Description

clientUUID

string

Client UUID

userUUID

string

User UUID

floorplanUUID

string

Floor Plan UUID

Headers

Name
Type
Description

Authentication

string

Authentication token

#########################################################################
## Error:success
#########################################################################

{
    "message": "success",
    "status": 200,
    "zones": [
        {
            "uuid": "456dce43-fba0-491f-9b10-6e977095fe49",
            "name": "new floor plan zone",
            "floorplanUUID": "b1abd063-99fa-4043-ade5-dd49e43c571b"
        },
        {
            "uuid": "a98a08a1-1589-4a47-bd2e-38dbd7aa9cb1",
            "name": "zone2222",
            "floorplanUUID": "b1abd063-99fa-4043-ade5-dd49e43c571b"      }
    ]
}

#########################################################################
## Error:No data found
#########################################################################

{
	"message": "error",
	"status": 400,
	"description": "No data found"
}

Last updated