Back to top

iOffice API

iOffice API

The iOffice API provides access to many iOffice modules for CRUD operations.

Endpoints

The base URL will be https://siteaddress/external/api/rest/v2/

All endpoints in the document are relative to this url.

Note: The term “room” has been amended to “space”; all references to a “room” or “rooms” will now be referred to as a “space” or “spaces”. This change does not affect current endpoints.

Authentication

In order to authenticate your request, in each request include the following in the request headers. All requests are over HTTPS.

x-auth-password: password
x-auth-username: username

Media Types

Where applicable this API uses the JSON media-type to represent resources states and affordances.

Requests with a message-body are using plain JSON to set or update resource states.

Error States

The common HTTP Response Status Codes are used.

Global Request Params

Paramater Value
search String to search for asset
limit maximum results to show (default: 50, maximum: 100).
startAt for pagination, the offset of where to start (default: 0)
orderBy Property to order results by (default: ‘id’)
orderByType Choose to order results in either ascending(asc) or descending(desc)order (default: ‘asc’)

Example usage to search users by employeeID:

https://siteaddress/external/api/rest/v2/users?search={employeeID}

Pagination

Obtain results beyond max with pagination using the limit and startAt query parameters: startAt={nextResult}&limit={limit}

It is recommended to implement pagination on all requests, and to limit page sizes to ensure the best possible performance.

An example using rooms:

  • /external/api/rest/v2/rooms/?limit=10&startAt=0

  • /external/api/rest/v2/rooms/?limit=10&startAt=10

You can implement a stop to pagination by checking the result set. If the limit is 10, and the response contains 10 records, you can request the next page by increasing your startAt by 10. If your limit is 10, but your response contains less than 10 records, it is not necessary to request the next page.

Resource Requests

NOTE: When updating a resource (with a PUT request), all that is needed is the ID of the object, and the value(s) you wish to update.

  • e.g. Updating a resource’s printerName to another, when that resource’s id is 5.

Headers

Content-Type: application/json

Body

{
    "id": 5,
    "printerName": "NEW PRINTER TEST NAME"
}

Response 200

Note: Many of the List of all XXXX endpoints that return a collection have a /count variation that will return the number of available records. All parameters supported by the main endpoint are supported by the /count endpoint.

  • e.g. To retrieve the total number of users available: /users/count

  • e.g. To retrieve the total number of category items available: /categories/items/count

  • e.g. To retrieve the total number of buildings in a city: /buildings/count?locationSearch={city,state}

API Usage Best Practices

This API is fantastic tool to create customizations that enhance and extend the iOFFICE product. In order to have the best integration experience, we recommend following these industry best practices.

  1. Restrict requests to needed data. Where possible, use of tools that limit the response body to just what is needed will provide a faster response.

  2. Implement retry logic and backoff policies. Any service may experience an intermittent error. Retrying a request on a 500 (or similar) response status code, with backoff, will provide a more robust integration experience.

  3. Leverage the use of pagination. Limiting page sizes, even to smaller that the default page size, can overcome a variety of issues. In addition, smaller pages will provide a faster response.

  4. Make sequential, as opposed to parrallel, page requests. Queueing up a set of requests to get multiple pages of data at once, will result in getting 429 response status code. This also leads to other poor API integration experiences. Making calls sequentially allows you to get fast incremental responses. UI’s can be updated to display results as they come, enabling a better user experience.

  5. Request data at each collection level. In cases of heirarchy or nested data, making multiple requests, one to ecah data level, is best practice. This allows you to cache common elements, reduce payload size, and number of overall requsets.

  6. Implement local logging. Local logging will allow you to log interactions with the API that contain the specific context of your application. This facilitates faster troubleshooting and resolution should there be a persistent issue.

User

User-related resources of iOffice API

User

A single user object.

Retrieve a Single User
GET/users/{id}

Example URI

GET /users/id
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

Edit a User
PUT/users/{id}

To update a User send JSON with the User’s ID and updated value for one or more of the attributes.

Updating a User’s Cost Center(s)

  • To update a User’s default Cost Center (Category ID equals 1) send JSON with the User’s ID and updated value for the costCenter attribute.

  • To update a User’s non-default Cost Center(s) (Category ID is greater than 1) send JSON with the User’s ID and updated value for the costCenters attribute.

Example URI

PUT /users/id
URI Parameters
HideShow
id
string (required) 

ID of the User

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "jobTitle": "Developer",
  "costCenter": {
    "id": 88
  },
  "costCenters": [
    {
      "id": 1234
    },
    {
      "id": 5678
    }
  ]
}
Response  200

Remove a User
DELETE/users/{id}

Example URI

DELETE /users/id
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Attach an Avatar to a User

Attach an Avatar to a User

Attach an Avatar to a User
POST/users/{id}/attachAvatar

The following attributes are required to attach an avatar: image, fileName.

Example URI

POST /users/id/attachAvatar
URI Parameters
HideShow
id
string (required) 

ID of the User

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "image": "BASE-64-IMAGE-STRING",
  "fileName": "tiny_cat_12573_8950.jpg"
}
Response  200
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

User Collection

Collection of all Users.

List of all Users
GET/users/{?centerId,userTypeId,role,siteAdmin,hasRoom,hasDefaultVisitorCenter,modifiedOrCreatedAfter,savedSearchId}

Example URI

GET /users/?centerId=12&userTypeId=23&role=operator&siteAdmin=true&hasRoom=true&hasDefaultVisitorCenter=true&modifiedOrCreatedAfter=1549319834&savedSearchId=
URI Parameters
HideShow
centerId
number (optional) Example: 12

Id of center to query from. If centerId is provided role is required

userTypeId
number (optional) Example: 23

Id of user type to query from.

role
string (optional) Example: operator

Role name to query from. Valid values are: administrator, operator, customer, manager, and technician. If role is provided centerId is required

siteAdmin
boolean (optional) Example: true

If true, query will include users with Admin permissions

hasRoom
boolean (optional) Example: true

If true, query will include users with rooms

hasDefaultVisitorCenter
boolean (optional) Example: true

If true, query will include users with a default visitor center

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

savedSearchId
string (optional) 

Saved Search Id used to filter the Users list.

Response  200
HideShow

JSON representation of the User Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":6
        ...
    },
    {
        "id":7
        ...
    },
    {
        "id":8
        ...
    }
]

Search Users
GET/users/{?search}

Example URI

GET /users/?search=API
URI Parameters
HideShow
limit
number (optional) Example: 20

To limit the number of result records

orderBy
string (required) Example: firstName

To sort the result basis firstName

orderByType
string (required) Example: asc

To sort the result in Ascending order

search
string (required) Example: API

Text to Search

selector
string (required) 
startAt
string (required) 
Response  200
HideShow
Body
[
  {
    "firstName": "API",
    "lastName": "USER",
    "seatClassification": "remote",
    "name": "API USER",
    "id": 3482,
    "email": "vwilliams@iofficecorp.com"
  },
  {
    "firstName": "Cutomer",
    "lastName": "API",
    "seatClassification": "remote",
    "name": "Cutomer API",
    "id": 4293,
    "email": "Rushikesh.Mali@eptura.com"
  },
  {
    "firstName": "Sergo API",
    "lastName": "Customer",
    "seatClassification": "remote",
    "name": "Sergo API Customer",
    "id": 4294,
    "email": "sergeo.nevdah+4@eptura.com"
  }
]

Create a User
POST/users/

The following attributes are required to create a User: firstName, lastName, email.

Example URI

POST /users/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "firstName": "Falco",
  "lastName": "Lombardi",
  "email": "flombardi@iofficecorp.com"
}
Response  201
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

User Quick Search Collection

User Quick Search
POST/users/quicksearch

Gets a collection of Users filtered by the search object posted.

Note:

  • matchingType = true -> Match all filters.

  • matchingType = false -> Match any filter.

Example URI

POST /users/quicksearch
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "availability": "EVERYONE",
  "filters": [
    {
      "qualifier": "CONTAINS",
      "valueString": "fox.mccloud",
      "propertyPath": "email",
      "name": ""
    }
  ],
  "itemClassName": "com.iofficeconnect.user.User",
  "matchingType": false,
  "name": ""
}
Response  200
HideShow

JSON representation of the User Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":6
        ...
    },
    {
        "id":7
        ...
    },
    {
        "id":8
        ...
    }
]

Get current logged in user

Get data for currently logged in user

Retrieve Current User
GET/users/me

Example URI

GET /users/me
Response  200
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

Get availability of a username

Get boolean value if {username} already exists

Check if Username Exists
GET/users/username/{username}

Example URI

GET /users/username/username
URI Parameters
HideShow
username
string (required) 
Response  200
HideShow
Headers
Content-Type: application/json
Body
{
        "available": "true",
    }

Get Current User Report Auth Data

Get current user report auth data

Retrieve Current User Report Auth Data
GET/users/me/reportAuth

Example URI

GET /users/me/reportAuth
Response  200
HideShow
Headers
Content-Type: application/json
Body
{
        "server:" "http://andross.arwing.com",
        "authToken:" "a234893fmdfjhdkjh345897djhdjkh59",
        "orgId:" "dev_fmcloud",
        "username: "foxmccloud"
    }

Get Current User Report Auth Data

Get current user report auth data

Retrieve Current User Support Auth Data
GET/users/me/supportAuth

Example URI

GET /users/me/supportAuth
Response  200
HideShow
Headers
Content-Type: application/json
Body
{
        "server:" "http://support.andross.arwing.com",
        "authToken:" "imp_46436454_3452345345dgdg3q5345dsgdgsdg_=dev_fmccloud_420"
    }

Reset User Password

Sends password reset email to user

Reset User Password
PUT/users/{id}/resetPassword

Example URI

PUT /users/id/resetPassword
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

User Permission Data

User permission data for a single user

Retrieve User Permissions
GET/users/{id}/permissions

Example URI

GET /users/id/permissions
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow
Headers
Content-Type: application/json
Body
[
      {
        "role":"ADMINISTRATOR",
        "center":{
          "name":"Asset Center",
          "id":69
        }
      },
      {
        "role":"MANAGER",
        "center":{
          "name":"Copy Center",
          "id":67
        }
      },
      {
        "role":"OPERATOR",
        "center":{
          "name":"File Room",
          "id":77
        }
      },
      {
        "role":"CUSTOMER",
        "center":{
          "name":"Inventory Center",
          "id":22
        }
    ]

Edit User Permissions
PUT/users/{id}/permissions

Example URI

PUT /users/id/permissions
URI Parameters
HideShow
id
string (required) 

ID of the User

Request
HideShow
Headers
Content-Type: application/json
Body
[
      {
        "role":"ADMINISTRATOR",
        "center":{
          "name":"Asset Center",
          "id":69
        }
      },
      {
        "role":"MANAGER",
        "center":{
          "name":"Copy Center",
          "id":67
        }
      },
      {
        "role":"OPERATOR",
        "center":{
          "name":"File Room",
          "id":77
        }
      },
      {
        "role":"CUSTOMER",
        "center":{
          "name":"Inventory Center",
          "id":22
        }
    ]
Response  200
HideShow

JSON representation of the User Resource

Headers
Content-Type: application/json
Body
{
  "floorWarden": false,
  "lastName": "McCloud",
  "firstName": "Fox",
  "dateCreated": 1464727067663,
  "color": "#89ffa1",
  "name": "Fox McCloud",
  "id": 420,
  "userType": {
    "dateCreated": 1430925570820,
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "company",
        "name": "Company",
        "id": 1
      },
      {
        "code": "jobTitle",
        "name": "Job Title",
        "id": 2
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 3
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 4
      },
      {
        "code": "mobile",
        "name": "Mobile Phone Number",
        "id": 6
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 8
      },
      {
        "code": "floorWarden",
        "name": "Floor Warden",
        "id": 12
      },
      {
        "code": "specialNeeds",
        "name": "Special Needs",
        "id": 13
      },
      {
        "code": "comments",
        "name": "Comments",
        "id": 14
      },
      {
        "code": "alternateDelivery",
        "name": "Alternate Delivery",
        "id": 16
      },
      {
        "code": "knownAs",
        "name": "Known As",
        "id": 17
      }
    ]
  },
  "userName": "foxmc",
  "specialNeeds": false,
  "email": "fmccloud@iofficecorp.com",
  "dateUpdated": 1479077061110
}

Logged In User Details

Details of Logged-In User

Logged In User Info
GET/users/me/{?selector}

‘selector’ expects email/permissions value in parameter if required

Example URI

GET /users/me/?selector=email%2CfirstName%2CuserName, permissions(center(module)%2Crole)%2CsiteAdmin
URI Parameters
HideShow
selector
string (optional) Example: email%2CfirstName%2CuserName, permissions(center(module)%2Crole)%2CsiteAdmin

Selector ID

Response  200
HideShow
Body
{
  "floorWarden": false,
  "lastName": "Wagh",
  "color": "#F29373",
  "userName": "ashitosh.wagh",
  "passwordResetAttemptsRemaining": 0,
  "specialNeeds": false,
  "dateUpdated": 1670333174840,
  "firstName": "Ashitosh",
  "dateCreated": 1652274992497,
  "phone": "1246575001001",
  "knownAs": "Admin",
  "passwordResetEmailSentAt": 1667305525963,
  "name": "Admin Wagh",
  "id": 3951,
  "userType": {
    "dateCreated": 1428954498147,
    "name": "Employee",
    "id": 1,
    "dateUpdated": 1669893659410
  },
  "email": "ashitosh.wagh@eptura.com"
}

User Types

Retrieve Collection of User Types
GET/users/types

Example URI

GET /users/types
URI Parameters
HideShow
selector
string (optional) Example: id,name,fields(id,required,sortOrder,baseField(id))

Selector ID

Response  200
HideShow
Body
[
  {
    "name": "Employee",
    "id": 1,
    "fields": [
      {
        "code": "custom03",
        "sortOrder": 3,
        "name": "Employee ID",
        "id": 95,
        "required": false,
        "baseField": {
          "code": "custom03",
          "name": "Employee ID",
          "id": 25
        }
      },
      {
        "code": "phone",
        "sortOrder": 3,
        "name": "Phone",
        "id": 3,
        "required": false,
        "baseField": {
          "code": "phone",
          "name": "Phone",
          "id": 12
        }
      },
      {
        "code": "custom04",
        "sortOrder": 4,
        "name": "Custom04 Time_15Mar2023",
        "id": 96,
        "required": false,
        "baseField": {
          "code": "custom04",
          "name": "Custom04 Time_15Mar2023",
          "id": 26
        }
      },
      {
        "code": "postalCode",
        "sortOrder": 5,
        "name": "Postal Code",
        "id": 97,
        "required": false,
        "baseField": {
          "code": "postalCode",
          "name": "Postal Code",
          "id": 10
        }
      },
      {
        "code": "employeeId",
        "sortOrder": 6,
        "name": "Employee ID",
        "id": 98,
        "required": false,
        "baseField": {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 35
        }
      },
      {
        "code": "department",
        "sortOrder": 7,
        "name": "Department",
        "id": 9,
        "required": false,
        "baseField": {
          "code": "department",
          "name": "Department",
          "id": 32
        }
      }
    ]
  },
  {
    "name": "Contractors",
    "id": 2,
    "fields": [
      {
        "code": "company",
        "sortOrder": 1,
        "name": "Company",
        "id": 16,
        "required": true,
        "baseField": {
          "code": "company",
          "name": "Company",
          "id": 21
        }
      },
      {
        "code": "jobTitle",
        "sortOrder": 2,
        "name": "Job Titles",
        "id": 80,
        "required": false,
        "baseField": {
          "code": "jobTitle",
          "name": "Job Titles",
          "id": 7
        }
      }
    ]
  },
  {
    "name": "Visitor",
    "id": 7,
    "fields": [
      {
        "code": "phone",
        "sortOrder": 1,
        "name": "Phone",
        "id": 89,
        "required": false,
        "baseField": {
          "code": "phone",
          "name": "Phone",
          "id": 12
        }
      },
      {
        "code": "company",
        "sortOrder": 2,
        "name": "Company",
        "id": 90,
        "required": false,
        "baseField": {
          "code": "company",
          "name": "Company",
          "id": 21
        }
      }
    ]
  },
  {
    "name": "Client",
    "id": 8,
    "fields": []
  }
]

Retrieve Single User Type
GET/users/types/{id}?{selector}

Example URI

GET /users/types/id?id,name,fields(id,required,sortOrder,baseField(id))
URI Parameters
HideShow
id
string (required) 

ID of the User Type

selector
string (optional) Example: id,name,fields(id,required,sortOrder,baseField(id))

Selector ID

Response  200
HideShow
Body
{
  "id": 8,
  "fields": [],
  "name": "Client"
}

Create New User Type
POST/users/types

This API creates new User Type

Example URI

POST /users/types
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "fields": [],
  "name": "Client"
}
Response  201
HideShow
Body
{
  "dateCreated": 1680535828250,
  "name": "Client",
  "id": 8
}

Update/Remove User Type
PUT/users/types/

  • active (optional, boolean, false) … Set it to false to remove a User Type

Example URI

PUT /users/types/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "Client",
  "id": 8,
  "fields": [],
  "active": false
}
Response  200
HideShow
Body
{
  "name": "Client",
  "id": 8,
  "dateUpdated": 1680536803197
}

User Fields

Fields related resources of iOffice API

Retrieve Collection of User Fields
GET/fields

Example URI

GET /fields
URI Parameters
HideShow
mappingCode
string (required) Example: categoryDepth or building
Response  200
HideShow
Body
[
  {
    "displayType": "Input",
    "code": "description",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Description",
    "dynamic": false,
    "id": 395,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom01",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Hello",
    "dynamic": false,
    "id": 401,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom02",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom02",
    "dynamic": false,
    "id": 402,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom03",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom03",
    "dynamic": false,
    "id": 403,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom04",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom04",
    "dynamic": false,
    "id": 404,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom05",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom05",
    "dynamic": false,
    "id": 405,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom06",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom06",
    "dynamic": false,
    "id": 406,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom07",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom07",
    "dynamic": false,
    "id": 407,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom08",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom08",
    "dynamic": false,
    "id": 408,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom09",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom09",
    "dynamic": false,
    "id": 409,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom10",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom10",
    "dynamic": false,
    "id": 410,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom11",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom11",
    "dynamic": false,
    "id": 411,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom12",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom12",
    "dynamic": false,
    "id": 412,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom13",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom13",
    "dynamic": false,
    "id": 413,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom14",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom14",
    "dynamic": false,
    "id": 414,
    "mappingCode": "categoryDepth",
    "required": false
  },
  {
    "displayType": "Input",
    "code": "custom15",
    "validationAlert": "You must enter a valid value for this field.",
    "dataType": "TEXT",
    "options": "{\"password\":false,\"multiline\":false}",
    "length": 500,
    "name": "Custom15",
    "dynamic": false,
    "id": 415,
    "mappingCode": "categoryDepth",
    "required": false
  }
]

Update Field
PUT/fields

Example URI

PUT /fields
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 385,
  "name": "My test"
}
Response  200
HideShow
Body
{
  "displayType": "Input",
  "code": "custom06",
  "validationAlert": "You must enter a valid value for this field.",
  "dataType": "TEXT",
  "options": "{\"password\":false,\"multiline\":false}",
  "length": 500,
  "name": "My test ",
  "dynamic": false,
  "id": 385,
  "mappingCode": "building",
  "required": false
}

Visitor

Visitor-related resources of iOffice API

Visitor

A single visitor object.

Retrieve a Single Visitor
GET/visitors/{id}

Example URI

GET /visitors/id
URI Parameters
HideShow
id
string (required) 

Visitor ID

Response  200
HideShow

JSON representation of the Visitor Resource

Headers
Content-Type: application/json
Body
{
  "status": "ok",
  "response": {
    "visitorId": {
      "id": 2021
    },
    "visitorInfo": {
      "visitorAlertId": 0,
      "firstName": "Tom",
      "lastName": "Richards",
      "company": "Tesla",
      "email": "abc@xyz.com",
      "notes": "For interview",
      "dateCreated": "2022-03-31T07:55:37.66",
      "createdBy": 3519,
      "dateUpdated": "2022-09-20T04:13:43",
      "lastUpdatedBy": 3517,
      "visitorType": "Interview",
      "active": true
    },
    "visitorIdentification": {},
    "visitorAddress": {
      "address": "Texas",
      "state": "Texas",
      "postalCode": "400001",
      "phone": "1234567"
    },
    "visitorCustomFields": {}
  }
}

Check-in registered visitor

Check-in Registered Visitor
POST/visitors/registrations/{id}/checkin

Example URI

POST /visitors/registrations/id/checkin
URI Parameters
HideShow
id
string (required) 

Registration ID

Response  200
HideShow
Body
{
    "status": "ok",
    "response": {
        "id": {
            "id": 3438
        },
    "visitorId": {
        "id": 2021
    },
    "userId": 3517,
    "centerId": 128,
    "arrivalDateTime": "1464727067663",
    "statusId": 2,
    "notes": "scheduled interview",
    "badgePrinted": "Yes",
    "isTouchless": false,
    "dateCreated": "1464727067663",
    "createdBy": 3517,
    "alertFlag": 0,
    "signatureId": {
        "id": "3050ea3e-aa95-c796-7078-3bd4dc6fd53d"
    }
}

Batch checkin

Batch Check-in Visitors
POST/visitors/registrations/batch/checkin

Example URI

POST /visitors/registrations/batch/checkin
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "visitors": [
    {
      "registrationId": 3374
    },
    {
      "registrationId": 3361
    }
  ]
}
Response  200

Pre-register a visitor

Pre-register a Visitor
POST/visitors/registrations/preregister

Example URI

POST /visitors/registrations/preregister
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "arrivalDate": 1663667820000,
  "userId": 3903,
  "visitorTypeName": "",
  "visitor": {
    "visitorInfo": {
      "visitorAlertId": 0,
      "firstName": "FirstName",
      "lastName": "LastName",
      "company": "Tesla",
      "email": "abc@xyz.com",
      "notes": "preRegister",
      "dateCreated": "1663667820000",
      "createdBy": 3516,
      "visitorType": "Furniture",
      "active": true
    },
    "visitorAddress": {
      "address": "Newyork",
      "state": "Newyork",
      "postalCode": "500123",
      "phone": "5443729573"
    },
    "visitorIdentification": {},
    "visitorCustomFields": {},
    "visitorId": {
      "id": 1982
    }
  },
  "submittedByUser": {
    "id": 3903
  },
  "deviceName": "Desktop",
  "centerId": 128
}
Response  200
HideShow
Body
{
    "status": "ok",
    "response": {
        "id": {
            "id": 3438
        },
    "visitorId": {
        "id": 2021
    },
    "userId": 3517,
    "centerId": 128,
    "arrivalDateTime": "1464727067663",
    "statusId": 2,
    "notes": "scheduled interview",
    "badgePrinted": "Yes",
    "isTouchless": false,
    "dateCreated": "1464727067663",
    "createdBy": 3517,
    "deviceName": "Desktop"
}

Visitor Types

Retrieve Collection of Visitor Types
GET/visitors/types/stringIcon/

Example URI

GET /visitors/types/stringIcon/
Response  200
HideShow
Body
{
  "status": "ok",
  "response": [
    {
      "id": {
        "id": 40
      },
      "name": "Employee",
      "active": true,
      "iconUid": "color:microsoft-powerpoint-2019--v2"
    },
    {
      "id": {
        "id": 41
      },
      "name": "Visitor",
      "active": true,
      "iconUid": "ios7:visa"
    },
    {
      "id": {
        "id": 58
      },
      "name": "Contractor",
      "active": true,
      "iconUid": "office:maintenance"
    },
    {
      "id": {
        "id": 70
      },
      "name": "Guest new1",
      "active": true,
      "iconUid": "fluent:star"
    },
    {
      "id": {
        "id": 5246
      },
      "name": "UI Test",
      "active": true,
      "iconUid": "m_outlined:gear--v2"
    }
  ]
}

Add Visitor Type
POST/visitors/types/stringIcon/

Example URI

POST /visitors/types/stringIcon/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "NewGuest",
  "active": true,
  "iconUid": "23265"
}
Response  200
HideShow
Body
{
  "status": "ok",
  "response": {
    "id": 5248
  }
}

Update/Remove Visitor Type
PUT/visitors/types/stringIcon/

  • active (optional, boolean, false) … Set it to false to remove a Visitor Type

Example URI

PUT /visitors/types/stringIcon/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": {
    "id": 5248
  },
  "name": "NewGuestEdited",
  "active": true,
  "iconUid": "23265"
}
Response  200
HideShow
Body
{
  "status": "ok",
  "response": 1
}

Move

Move-related resources of iOffice API

Move

A single move object.

Retrieve a Single Move Request
GET/move/requests/{id}

Example URI

GET /move/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the Move Request

Response  200
HideShow

JSON representation of the Move Resource

Headers
Content-Type: application/json
Body
{  
   {
     "date": 1504112404863,
     "requester":{
           "floorWarden":false,
           "lastName":"Vader",
           "firstName":"Darth",
           "dateCreated":1464727067663,
           "color":"#89ffa1",
           "name":"Darth Vader",
           "id":9,
           "userType":{
              "dateCreated":1430925570820,
              "name":"Employee",
              "id":1,
              "fields":[
                 {
                    "code":"company",
                    "name":"Company",
                    "id":1
                 },
                 {
                    "code":"jobTitle",
                    "name":"Job Title",
                    "id":2
                 },
                 {
                    "code":"phone",
                    "name":"Phone",
                    "id":3
                 },
                 {
                    "code":"extension",
                    "name":"Extension",
                    "id":4
                 },
                 {
                    "code":"mobile",
                    "name":"Mobile Phone Number",
                    "id":6
                 },
                 {
                    "code":"employeeId",
                    "name":"Employee ID",
                    "id":8
                 },
                 {
                    "code":"floorWarden",
                    "name":"Floor Warden",
                    "id":12
                 },
                 {
                    "code":"specialNeeds",
                    "name":"Special Needs",
                    "id":13
                 },
                 {
                    "code":"comments",
                    "name":"Comments",
                    "id":14
                 },
                 {
                    "code":"alternateDelivery",
                    "name":"Alternate Delivery",
                    "id":16
                 },
                 {
                    "code":"knownAs",
                    "name":"Known As",
                    "id":17
                 }
              ]
           },
           "userName":"lordvader",
           "specialNeeds":false,
           "email":"lordvader@deathstar.com",
           "dateUpdated":1488566587390
        },
     "approved": true,
     "comments": [
       {
         "id": 92,
         "content": "your comment here!"
       }
     ],
     "dateCreated": 1469818235210,
     "approvedBy": {
       "floorWarden": false,
       "lastName": "Admin",
       "firstName": "Han",
       "dateCreated": 1464727067663,
       "color": "#89ffa1",
       "name": "Han Solo",
       "id": 9,
       "userType": {
         "dateCreated": 1430925570820,
         "name": "Employee",
         "id": 1,
         "fields": [
           {
             "code": "company",
             "name": "Company",
             "id": 1
           },
           {
             "code": "jobTitle",
             "name": "Job Title",
             "id": 2
           },
           {
             "code": "phone",
             "name": "Phone",
             "id": 3
           },
           {
             "code": "extension",
             "name": "Extension",
             "id": 4
           },
           {
             "code": "mobile",
             "name": "Mobile Phone Number",
             "id": 6
           },
           {
             "code": "employeeId",
             "name": "Employee ID",
             "id": 8
           },
           {
             "code": "floorWarden",
             "name": "Floor Warden",
             "id": 12
           },
           {
             "code": "specialNeeds",
             "name": "Special Needs",
             "id": 13
           },
           {
             "code": "comments",
             "name": "Comments",
             "id": 14
           },
           {
             "code": "alternateDelivery",
             "name": "Alternate Delivery",
             "id": 16
           },
           {
             "code": "knownAs",
             "name": "Known As",
             "id": 17
           }
         ]
       },
       "userName": "hansolo",
       "specialNeeds": false,
       "email": "hansolo@iofficecorp.com",
       "dateUpdated": 1488566587390
     },
     "description": "Customer Service's Move Request (7/09)",
     "id": 16,
     "status": {
       "code": "sub",
       "dateCreated": 1185984126540,
       "name": "In Progress",
       "id": 10
     }
 }

Edit a Move Request
PUT/move/requests

To update a Move Request send JSON with the Move Request’s ID and updated value for one or more of the attributes.

Example URI

PUT /move/requests
Request
HideShow
Headers
Content-Type: application/json
Body
{
   {
     "id": 23,
     "approved": true,
   }
 }
Response  200
HideShow
Body
{
  "date": 1504112404863,
  "requester": {
    "floorWarden": false,
    "lastName": "Vader",
    "firstName": "Darth",
    "dateCreated": 1464727067663,
    "color": "#89ffa1",
    "name": "Darth Vader",
    "id": 9,
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "fields": [
        {
          "code": "company",
          "name": "Company",
          "id": 1
        },
        {
          "code": "jobTitle",
          "name": "Job Title",
          "id": 2
        },
        {
          "code": "phone",
          "name": "Phone",
          "id": 3
        },
        {
          "code": "extension",
          "name": "Extension",
          "id": 4
        },
        {
          "code": "mobile",
          "name": "Mobile Phone Number",
          "id": 6
        },
        {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 8
        },
        {
          "code": "floorWarden",
          "name": "Floor Warden",
          "id": 12
        },
        {
          "code": "specialNeeds",
          "name": "Special Needs",
          "id": 13
        },
        {
          "code": "comments",
          "name": "Comments",
          "id": 14
        },
        {
          "code": "alternateDelivery",
          "name": "Alternate Delivery",
          "id": 16
        },
        {
          "code": "knownAs",
          "name": "Known As",
          "id": 17
        }
      ]
    },
    "userName": "lordvader",
    "specialNeeds": false,
    "email": "lordvader@deathstar.com",
    "dateUpdated": 1488566587390
  },
  "approved": true,
  "comments": [
    {
      "id": 92,
      "content": "your comment here!"
    }
  ],
  "dateCreated": 1469818235210,
  "approvedBy": {
    "floorWarden": false,
    "lastName": "Admin",
    "firstName": "Han",
    "dateCreated": 1464727067663,
    "color": "#89ffa1",
    "name": "Han Solo",
    "id": 9,
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "fields": [
        {
          "code": "company",
          "name": "Company",
          "id": 1
        },
        {
          "code": "jobTitle",
          "name": "Job Title",
          "id": 2
        },
        {
          "code": "phone",
          "name": "Phone",
          "id": 3
        },
        {
          "code": "extension",
          "name": "Extension",
          "id": 4
        },
        {
          "code": "mobile",
          "name": "Mobile Phone Number",
          "id": 6
        },
        {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 8
        },
        {
          "code": "floorWarden",
          "name": "Floor Warden",
          "id": 12
        },
        {
          "code": "specialNeeds",
          "name": "Special Needs",
          "id": 13
        },
        {
          "code": "comments",
          "name": "Comments",
          "id": 14
        },
        {
          "code": "alternateDelivery",
          "name": "Alternate Delivery",
          "id": 16
        },
        {
          "code": "knownAs",
          "name": "Known As",
          "id": 17
        }
      ]
    },
    "userName": "hansolo",
    "specialNeeds": false,
    "email": "hansolo@iofficecorp.com",
    "dateUpdated": 1488566587390
  },
  "id": 16,
  "items": [
    {
      "toRoom": {
        "dateCreated": 1465572191247,
        "reservable": false,
        "name": "49.0",
        "description": "",
        "id": 416,
        "floor": {
          "area": 23600.0167,
          "dateCreated": 1465572160000,
          "drawingAvailable": true,
          "name": "1",
          "id": 2,
          "building": {
            "address": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "city": "Houston",
              "postalCode": "",
              "state": {
                "defaultSelected": false,
                "code": "",
                "name": "Other",
                "id": 70
              }
            },
            "dateCreated": 1465572158677,
            "metric": false,
            "name": "Built",
            "id": 44,
            "dateUpdated": 1465572159707
          },
          "dateUpdated": 1465572186757
        },
        "type": {
          "hexColor": "33cc99",
          "color": {},
          "name": "WKST",
          "occupiable": true,
          "id": 1,
          "parkingSpace": false
        },
        "capacity": 1
      },
      "toRoomAvailable": true,
      "name": "Han Solo",
      "id": 31201,
      "type": {
        "dateCreated": 1067272496850,
        "name": "Employee Move",
        "id": 2,
        "fields": [
          {
            "code": "firstName",
            "name": "First Name",
            "id": 17
          },
          {
            "code": "lastName",
            "name": "Last Name",
            "id": 18
          },
          {
            "code": "phone",
            "name": "Phone",
            "id": 19
          },
          {
            "code": "extension",
            "name": "Extension",
            "id": 20
          },
          {
            "code": "costCenter",
            "name": "Cost Center",
            "id": 21
          },
          {
            "code": "employeeId",
            "name": "Employee ID",
            "id": 22
          },
          {
            "code": "email",
            "name": "Email",
            "id": 23
          }
        ],
        "typeCode": "move"
      },
      "user": {
        "floorWarden": false,
        "lastName": "Admin",
        "extension": "",
        "color": "#8cf7a4",
        "employeeId": "",
        "userName": "hansolo",
        "specialNeeds": false,
        "dateUpdated": 1488566587390,
        "firstName": "Han",
        "dateCreated": 1464727067663,
        "phone": "",
        "name": "Han Solo",
        "mailStop": {
          "name": "Stop 1",
          "id": 140
        },
        "userType": {
          "dateCreated": 1430925570820,
          "name": "Employee",
          "id": 1,
          "fields": [
            {
              "code": "company",
              "name": "Company",
              "id": 1
            },
            {
              "code": "jobTitle",
              "name": "Job Title",
              "id": 2
            },
            {
              "code": "phone",
              "name": "Phone",
              "id": 3
            },
            {
              "code": "extension",
              "name": "Extension",
              "id": 4
            },
            {
              "code": "mobile",
              "name": "Mobile Phone Number",
              "id": 6
            },
            {
              "code": "employeeId",
              "name": "Employee ID",
              "id": 8
            },
            {
              "code": "floorWarden",
              "name": "Floor Warden",
              "id": 12
            },
            {
              "code": "specialNeeds",
              "name": "Special Needs",
              "id": 13
            },
            {
              "code": "comments",
              "name": "Comments",
              "id": 14
            },
            {
              "code": "alternateDelivery",
              "name": "Alternate Delivery",
              "id": 16
            },
            {
              "code": "knownAs",
              "name": "Known As",
              "id": 17
            }
          ]
        },
        "email": "hansolo@iofficecorp.com"
      },
      "tasksValueMap": {
        "10": {
          "other": "Need a Bigger TV",
          "notes": "Samsung or Sony",
          "whiteBoard": "Yes",
          "deskChair": "Yes",
          "sideChair": "Yes"
        }
      }
    }
  ],
  "description": "Customer Service's Move Request (7/09)",
  "status": {
    "code": "sub",
    "dateCreated": 1185984126540,
    "name": "In Progress",
    "id": 10
  }
}

Remove a Move Request
DELETE/move/requests/{id}

Example URI

DELETE /move/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Archive a Move Request
POST/move/requests/archive

Example URI

POST /move/requests/archive
Request
HideShow
Headers
Content-Type: application/json
Body
{}
Response  200
HideShow
Body
{
  "date": 1582845814050,
  "requester": {
    "costCenter1": "",
    "lastName": "Customer28",
    "extension": "",
    "color": "#974B71",
    "passwordResetAttemptsRemaining": 3,
    "specialNeeds": false,
    "custom20": "",
    "custom22": "",
    "custom21": "",
    "custom24": "",
    "custom23": "",
    "dateCreated": 1465574697757,
    "custom26": "",
    "custom25": "",
    "knownAs": "",
    "custom28": "",
    "custom27": "",
    "custom29": "",
    "company": "",
    "id": 15624,
    "costCenter2": "North America",
    "email": "customer28@e.rainforestqa.com",
    "floorWarden": false,
    "comments": "",
    "costCenter": {
      "hexColor": "ffffcc",
      "code": "Please do not modify/remove!",
      "dateCreated": 1464968087173,
      "depth": {
        "code": "co",
        "dateCreated": 1181403908747,
        "level": 0,
        "name": "Company",
        "id": 1,
        "category": {
          "code": "Please do not modify/remove!",
          "dateCreated": 1448999612493,
          "color": {},
          "name": "Default Category",
          "id": 1,
          "dateUpdated": 1465489481990
        }
      },
      "color": {},
      "name": "North America",
      "id": 199,
      "category": {
        "code": "Please do not modify/remove!",
        "dateCreated": 1448999612493,
        "color": {},
        "name": "Default Category",
        "id": 1,
        "dateUpdated": 1465489481990
      },
      "dateUpdated": 1464988286367
    },
    "mobile": "",
    "employeeId": "7307530",
    "userName": "customer28",
    "room": {
      "area": 56,
      "dateCreated": 1573252658877,
      "reservableByRules": false,
      "reservable": false,
      "name": "B02059F",
      "description": "",
      "id": 1921,
      "type": {
        "hexColor": "7bd081",
        "contentFlag": 1,
        "cost": 0,
        "color": {},
        "name": "WKST",
        "occupiable": false,
        "id": 1,
        "parkingSpace": false,
        "dateUpdated": 1677431311790,
        "typeCode": ""
      },
      "floor": {
        "area": 49395.5598,
        "dateCreated": 1573252598693,
        "drawingAvailable": true,
        "interiorGross": 10001,
        "name": "2",
        "leaseArea": 0,
        "id": 55,
        "building": {
          "code": "DO NOT REMOVE",
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "901 Bagby St",
            "postalCode": "77002",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1107466065320,
          "metric": false,
          "name": "Move",
          "leaseArea": 6000,
          "location": {},
          "revitLink": "https://a360.co/2IHVNN4",
          "id": 43,
          "dateUpdated": 1677538229843,
          "costCenters": []
        },
        "dateUpdated": 1671583701540
      },
      "occupied": true,
      "capacity": 1,
      "dateUpdated": 1675154843230
    },
    "custom30": "",
    "dateUpdated": 1675154844273,
    "custom11": "",
    "firstName": "Rainforest",
    "custom10": "",
    "custom13": "",
    "custom12": "",
    "custom15": "",
    "phone": "",
    "custom14": "",
    "custom17": "",
    "custom16": "",
    "name": "Rainforest Customer28",
    "custom19": "",
    "custom18": "",
    "mailStop": {
      "name": "Stop 1",
      "id": 139
    },
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "dateUpdated": 1599768189727
    }
  },
  "approved": false,
  "attachments": [],
  "comments": [],
  "dateCreated": 1582845814057,
  "center": {
    "name": "Move Center",
    "id": 77
  },
  "description": "JBen Test Move ",
  "additionalMoveCost": 0,
  "id": 203,
  "dateUpdated": 1676567772120,
  "status": {
    "dateCreated": 1202693678817,
    "name": "Rejected",
    "id": 16,
    "locked": false,
    "dateUpdated": 1676634643937
  }
}

Move Collection

List of all Move Requests
GET/move/requests/{?statusId,statusCode,modifiedOrCreatedAfter}

Example URI

GET /move/requests/?statusId=66&statusCode=sub&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
statusId
number (optional) Example: 66

ID of the Move status to query from

statusCode
string (optional) Example: sub

Code of the Move status to query from

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

maintenanceRequestId
number (optional) Example: 14944

ID of the Maintenance to query from

Response  200
HideShow

JSON representation of the Move Collection resource.

Headers
Content-Type: application/json
Body
[
             {
               "date": 1504112404863,
               "requester":{
                     "floorWarden":false,
                     "lastName":"Vader",
                     "firstName":"Darth",
                     "dateCreated":1464727067663,
                     "color":"#89ffa1",
                     "name":"Darth Vader",
                     "id":9,
                     "userType":{
                        "dateCreated":1430925570820,
                        "name":"Employee",
                        "id":1,
                        "fields":[
                           {
                              "code":"company",
                              "name":"Company",
                              "id":1
                           },
                           {
                              "code":"jobTitle",
                              "name":"Job Title",
                              "id":2
                           },
                           {
                              "code":"phone",
                              "name":"Phone",
                              "id":3
                           },
                           {
                              "code":"extension",
                              "name":"Extension",
                              "id":4
                           },
                           {
                              "code":"mobile",
                              "name":"Mobile Phone Number",
                              "id":6
                           },
                           {
                              "code":"employeeId",
                              "name":"Employee ID",
                              "id":8
                           },
                           {
                              "code":"floorWarden",
                              "name":"Floor Warden",
                              "id":12
                           },
                           {
                              "code":"specialNeeds",
                              "name":"Special Needs",
                              "id":13
                           },
                           {
                              "code":"comments",
                              "name":"Comments",
                              "id":14
                           },
                           {
                              "code":"alternateDelivery",
                              "name":"Alternate Delivery",
                              "id":16
                           },
                           {
                              "code":"knownAs",
                              "name":"Known As",
                              "id":17
                           }
                        ]
                     },
                     "userName":"lordvader",
                     "specialNeeds":false,
                     "email":"lordvader@deathstar.com",
                     "dateUpdated":1488566587390
                  },
               "approved": true,
               "comments": [
                 {
                   "id": 92,
                   "content": "your comment here!"
                 }
               ],
               "dateCreated": 1469818235210,
               "approvedBy": {
                 "floorWarden": false,
                 "lastName": "Admin",
                 "firstName": "Han",
                 "dateCreated": 1464727067663,
                 "color": "#89ffa1",
                 "name": "Han Solo",
                 "id": 9,
                 "userType": {
                   "dateCreated": 1430925570820,
                   "name": "Employee",
                   "id": 1,
                   "fields": [
                     {
                       "code": "company",
                       "name": "Company",
                       "id": 1
                     },
                     {
                       "code": "jobTitle",
                       "name": "Job Title",
                       "id": 2
                     },
                     {
                       "code": "phone",
                       "name": "Phone",
                       "id": 3
                     },
                     {
                       "code": "extension",
                       "name": "Extension",
                       "id": 4
                     },
                     {
                       "code": "mobile",
                       "name": "Mobile Phone Number",
                       "id": 6
                     },
                     {
                       "code": "employeeId",
                       "name": "Employee ID",
                       "id": 8
                     },
                     {
                       "code": "floorWarden",
                       "name": "Floor Warden",
                       "id": 12
                     },
                     {
                       "code": "specialNeeds",
                       "name": "Special Needs",
                       "id": 13
                     },
                     {
                       "code": "comments",
                       "name": "Comments",
                       "id": 14
                     },
                     {
                       "code": "alternateDelivery",
                       "name": "Alternate Delivery",
                       "id": 16
                     },
                     {
                       "code": "knownAs",
                       "name": "Known As",
                       "id": 17
                     }
                   ]
                 },
                 "userName": "Han Solo",
                 "specialNeeds": false,
                 "email": "hansolo@iofficecorp.com",
                 "dateUpdated": 1488566587390
               },
               "id": 16,
               "items": [
                 {
                   "toRoom": {
                     "dateCreated": 1465572191247,
                     "reservable": false,
                     "name": "49.0",
                     "description": "",
                     "id": 416,
                     "floor": {
                       "area": 23600.0167,
                       "dateCreated": 1465572160000,
                       "drawingAvailable": true,
                       "name": "1",
                       "id": 2,
                       "building": {
                         "address": {
                           "country": {
                             "defaultSelected": true,
                             "subdivisionCategoryName": "state",
                             "alpha2Code": "US",
                             "isoCode": "US",
                             "name": "United States of America (the)",
                             "id": 223
                           },
                           "city": "Houston",
                           "postalCode": "",
                           "state": {
                             "defaultSelected": false,
                             "code": "",
                             "name": "Other",
                             "id": 70
                           }
                         },
                         "dateCreated": 1465572158677,
                         "metric": false,
                         "name": "Built",
                         "id": 44,
                         "dateUpdated": 1465572159707
                       },
                       "dateUpdated": 1465572186757
                     },
                     "type": {
                       "hexColor": "33cc99",
                       "color": {},
                       "name": "WKST",
                       "occupiable": true,
                       "id": 1,
                       "parkingSpace": false
                     },
                     "capacity": 1
                   },
                   "toRoomAvailable": true,
                   "name": "Han Solo",
                   "id": 31201,
                   "type": {
                     "dateCreated": 1067272496850,
                     "name": "Employee Move",
                     "id": 2,
                     "fields": [
                       {
                         "code": "firstName",
                         "name": "First Name",
                         "id": 17
                       },
                       {
                         "code": "lastName",
                         "name": "Last Name",
                         "id": 18
                       },
                       {
                         "code": "phone",
                         "name": "Phone",
                         "id": 19
                       },
                       {
                         "code": "extension",
                         "name": "Extension",
                         "id": 20
                       },
                       {
                         "code": "costCenter",
                         "name": "Cost Center",
                         "id": 21
                       },
                       {
                         "code": "employeeId",
                         "name": "Employee ID",
                         "id": 22
                       },
                       {
                         "code": "email",
                         "name": "Email",
                         "id": 23
                       }
                     ],
                     "typeCode": "move"
                   },
                   "user": {
                     "floorWarden": false,
                     "lastName": "Admin",
                     "extension": "",
                     "color": "#8cf7a4",
                     "employeeId": "",
                     "userName": "hansolo",
                     "specialNeeds": false,
                     "dateUpdated": 1488566587390,
                     "firstName": "Han",
                     "dateCreated": 1464727067663,
                     "phone": "",
                     "name": "Han Solo",
                     "mailStop": {
                       "name": "Stop 1",
                       "id": 140
                     },
                     "userType": {
                       "dateCreated": 1430925570820,
                       "name": "Employee",
                       "id": 1,
                       "fields": [
                         {
                           "code": "company",
                           "name": "Company",
                           "id": 1
                         },
                         {
                           "code": "jobTitle",
                           "name": "Job Title",
                           "id": 2
                         },
                         {
                           "code": "phone",
                           "name": "Phone",
                           "id": 3
                         },
                         {
                           "code": "extension",
                           "name": "Extension",
                           "id": 4
                         },
                         {
                           "code": "mobile",
                           "name": "Mobile Phone Number",
                           "id": 6
                         },
                         {
                           "code": "employeeId",
                           "name": "Employee ID",
                           "id": 8
                         },
                         {
                           "code": "floorWarden",
                           "name": "Floor Warden",
                           "id": 12
                         },
                         {
                           "code": "specialNeeds",
                           "name": "Special Needs",
                           "id": 13
                         },
                         {
                           "code": "comments",
                           "name": "Comments",
                           "id": 14
                         },
                         {
                           "code": "alternateDelivery",
                           "name": "Alternate Delivery",
                           "id": 16
                         },
                         {
                           "code": "knownAs",
                           "name": "Known As",
                           "id": 17
                         }
                       ]
                     },
                     "email": "hansolo@iofficecorp.com"
                   },
                   "tasksValueMap":{  
                      "10":{  
                         "other":"Need a Bigger TV",
                         "notes":"Samsung or Sony",
                         "whiteBoard":"Yes",
                         "deskChair":"Yes",
                         "sideChair":"Yes"
                      }
                   }
                 }
               ],
               "description": "Customer Service's Move Request (7/09)",
               "status": {
                 "code": "sub",
                 "dateCreated": 1185984126540,
                 "name": "In Progress",
                 "id": 10
               }
             },

             ...
]

Create a Move Request
POST/move/requests

  • The following attributes are required to create a Move Request: status id and description.

Example URI

POST /move/requests
Request
HideShow
Headers
Content-Type: application/json
Body
{
     "date": 1504112404863,
     "approved": true,
     "comments": [
       {
         "content": "your comment here!"
       }
     ],
     "description": "your description here!"
     "approvedBy": {
       "id": 9
     },
     "items": [
       {
         "toRoom": {
             "id": 2
          },
         "type": {
           "id": 2
         },
         "user": {
           "id": 9,
           "lastName": "Admin",
           "extension": "",
           "employeeId": "",
           "userName": "hansolo",
           "specialNeeds": false,
           "firstName": "Han",
           "phone": "",
           "name": "Han Solo",
           "email": "hansolo@iofficecorp.com"
         },
         "tasksValueMap":{  
            "10":{  
               "other":"Need a Bigger TV",
               "notes":"Samsung or Sony",
               "whiteBoard":"Yes",
               "deskChair":"Yes",
               "sideChair":"Yes"
            }
         }
       }
     ],
     "status": {
       "id": 10
     },
       "cost": {
        "id": 1
      },
      "additionalMoveCost": 1000
   }
Response  201
HideShow
Body
{
  "date": 1504112404863,
  "requester": {
    "floorWarden": false,
    "lastName": "Vader",
    "firstName": "Darth",
    "dateCreated": 1464727067663,
    "color": "#89ffa1",
    "name": "Darth Vader",
    "id": 9,
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "fields": [
        {
          "code": "company",
          "name": "Company",
          "id": 1
        },
        {
          "code": "jobTitle",
          "name": "Job Title",
          "id": 2
        },
        {
          "code": "phone",
          "name": "Phone",
          "id": 3
        },
        {
          "code": "extension",
          "name": "Extension",
          "id": 4
        },
        {
          "code": "mobile",
          "name": "Mobile Phone Number",
          "id": 6
        },
        {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 8
        },
        {
          "code": "floorWarden",
          "name": "Floor Warden",
          "id": 12
        },
        {
          "code": "specialNeeds",
          "name": "Special Needs",
          "id": 13
        },
        {
          "code": "comments",
          "name": "Comments",
          "id": 14
        },
        {
          "code": "alternateDelivery",
          "name": "Alternate Delivery",
          "id": 16
        },
        {
          "code": "knownAs",
          "name": "Known As",
          "id": 17
        }
      ]
    },
    "userName": "lordvader",
    "specialNeeds": false,
    "email": "lordvader@deathstar.com",
    "dateUpdated": 1488566587390
  },
  "approved": true,
  "comments": [
    {
      "id": 97,
      "content": "your comment here!"
    }
  ],
  "dateCreated": 1488576779346,
  "approvedBy": {
    "floorWarden": false,
    "lastName": "Admin",
    "firstName": "Han",
    "dateCreated": 1464727067663,
    "color": "#89ffa1",
    "name": "Han Solo",
    "id": 9,
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "fields": [
        {
          "code": "company",
          "name": "Company",
          "id": 1
        },
        {
          "code": "jobTitle",
          "name": "Job Title",
          "id": 2
        },
        {
          "code": "phone",
          "name": "Phone",
          "id": 3
        },
        {
          "code": "extension",
          "name": "Extension",
          "id": 4
        },
        {
          "code": "mobile",
          "name": "Mobile Phone Number",
          "id": 6
        },
        {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 8
        },
        {
          "code": "floorWarden",
          "name": "Floor Warden",
          "id": 12
        },
        {
          "code": "specialNeeds",
          "name": "Special Needs",
          "id": 13
        },
        {
          "code": "comments",
          "name": "Comments",
          "id": 14
        },
        {
          "code": "alternateDelivery",
          "name": "Alternate Delivery",
          "id": 16
        },
        {
          "code": "knownAs",
          "name": "Known As",
          "id": 17
        }
      ]
    },
    "userName": "hansolo",
    "specialNeeds": false,
    "email": "hansolo@iofficecorp.com",
    "dateUpdated": 1488566587390
  },
  "description": "Customer Service's Move Request (7/09)",
  "id": 34,
  "items": [
    {
      "toRoom": {
        "dateCreated": 1465569711690,
        "reservable": false,
        "name": "FP4028",
        "description": "",
        "id": 2,
        "floor": {
          "area": 29612.2818,
          "dateCreated": 1464726639557,
          "drawingAvailable": true,
          "name": "0",
          "id": 1,
          "building": {
            "address": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "city": "",
              "street": "",
              "postalCode": "",
              "state": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "defaultSelected": false,
                "code": "TX",
                "name": "Texas",
                "id": 61,
                "categoryName": "state"
              }
            },
            "code": "BLDG1",
            "dateCreated": 1107466065320,
            "metric": false,
            "name": "Building1",
            "id": 43
          },
          "dateUpdated": 1468875784277
        },
        "type": {
          "hexColor": "33cc99",
          "color": {},
          "name": "WKST",
          "occupiable": true,
          "id": 1,
          "parkingSpace": false
        },
        "capacity": 1,
        "dateUpdated": 1468875790390
      },
      "toRoomAvailable": true,
      "name": "Han Solo",
      "id": 31209,
      "type": {
        "dateCreated": 1067272496850,
        "name": "Employee Move",
        "id": 2,
        "fields": [
          {
            "code": "firstName",
            "name": "First Name",
            "id": 17
          },
          {
            "code": "lastName",
            "name": "Last Name",
            "id": 18
          },
          {
            "code": "phone",
            "name": "Phone",
            "id": 19
          },
          {
            "code": "extension",
            "name": "Extension",
            "id": 20
          },
          {
            "code": "costCenter",
            "name": "Cost Center",
            "id": 21
          },
          {
            "code": "employeeId",
            "name": "Employee ID",
            "id": 22
          },
          {
            "code": "email",
            "name": "Email",
            "id": 23
          }
        ],
        "typeCode": "move"
      },
      "user": {
        "floorWarden": false,
        "lastName": "Admin",
        "extension": "",
        "color": "#ffbcc6",
        "employeeId": "",
        "userName": "hansolo",
        "specialNeeds": false,
        "dateUpdated": 1488566587390,
        "firstName": "Han",
        "dateCreated": 1464727067663,
        "phone": "",
        "name": "Han Solo",
        "userType": {
          "dateCreated": 1430925570820,
          "name": "Employee",
          "id": 1,
          "fields": [
            {
              "code": "company",
              "name": "Company",
              "id": 1
            },
            {
              "code": "jobTitle",
              "name": "Job Title",
              "id": 2
            },
            {
              "code": "phone",
              "name": "Phone",
              "id": 3
            },
            {
              "code": "extension",
              "name": "Extension",
              "id": 4
            },
            {
              "code": "mobile",
              "name": "Mobile Phone Number",
              "id": 6
            },
            {
              "code": "employeeId",
              "name": "Employee ID",
              "id": 8
            },
            {
              "code": "floorWarden",
              "name": "Floor Warden",
              "id": 12
            },
            {
              "code": "specialNeeds",
              "name": "Special Needs",
              "id": 13
            },
            {
              "code": "comments",
              "name": "Comments",
              "id": 14
            },
            {
              "code": "alternateDelivery",
              "name": "Alternate Delivery",
              "id": 16
            },
            {
              "code": "knownAs",
              "name": "Known As",
              "id": 17
            }
          ]
        },
        "email": "hansolo@iofficecorp.com"
      },
      "tasksValueMap": {
        "10": {
          "other": "Need a Bigger TV",
          "notes": "Samsung or Sony",
          "whiteBoard": "Yes",
          "deskChair": "Yes",
          "sideChair": "Yes"
        }
      }
    }
  ],
  "dateUpdated": 1488576779926,
  "status": {
    "code": "sub",
    "dateCreated": 1185984126540,
    "name": "In Progress",
    "id": 10
  }
}

Move Request Items

A single move request item object.

Retrieve a single Move Request Item
GET/move/requests/items/{id}

Example URI

GET /move/requests/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Move Request Item

Response  200
HideShow

JSON representation of the Move Item Resource

Headers
Content-Type: application/json
Body
{
  "toRoom": {
    "dateCreated": 1465572191247,
    "reservable": false,
    "name": "49.0",
    "description": "",
    "id": 416,
    "floor": {
      "area": 23600.0167,
      "dateCreated": 1465572160000,
      "drawingAvailable": true,
      "name": "1",
      "id": 2,
      "building": {
        "address": {
          "country": {
            "defaultSelected": true,
            "subdivisionCategoryName": "state",
            "alpha2Code": "US",
            "isoCode": "US",
            "name": "United States of America (the)",
            "id": 223
          },
          "city": "Houston",
          "postalCode": "",
          "state": {
            "defaultSelected": false,
            "code": "",
            "name": "Other",
            "id": 70
          }
        },
        "dateCreated": 1465572158677,
        "metric": false,
        "name": "Built",
        "id": 44,
        "dateUpdated": 1465572159707
      },
      "dateUpdated": 1465572186757
    },
    "type": {
      "hexColor": "33cc99",
      "color": {},
      "name": "WKST",
      "occupiable": true,
      "id": 1,
      "parkingSpace": false
    },
    "capacity": 1
  },
  "toRoomAvailable": true,
  "name": "Han Solo",
  "id": 31201,
  "type": {
    "dateCreated": 1067272496850,
    "name": "Employee Move",
    "id": 2,
    "fields": [
      {
        "code": "firstName",
        "name": "First Name",
        "id": 17
      },
      {
        "code": "lastName",
        "name": "Last Name",
        "id": 18
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 19
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 20
      },
      {
        "code": "costCenter",
        "name": "Cost Center",
        "id": 21
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 22
      },
      {
        "code": "email",
        "name": "Email",
        "id": 23
      }
    ],
    "typeCode": "move"
  },
  "user": {
    "floorWarden": false,
    "lastName": "Admin",
    "extension": "",
    "color": "#8cf7a4",
    "employeeId": "",
    "userName": "hansolo",
    "specialNeeds": false,
    "dateUpdated": 1488566587390,
    "firstName": "Han",
    "dateCreated": 1464727067663,
    "phone": "",
    "name": "Han Solo",
    "mailStop": {
      "name": "Stop 1",
      "id": 140
    },
    "userType": {
      "dateCreated": 1430925570820,
      "name": "Employee",
      "id": 1,
      "fields": [
        {
          "code": "company",
          "name": "Company",
          "id": 1
        },
        {
          "code": "jobTitle",
          "name": "Job Title",
          "id": 2
        },
        {
          "code": "phone",
          "name": "Phone",
          "id": 3
        },
        {
          "code": "extension",
          "name": "Extension",
          "id": 4
        },
        {
          "code": "mobile",
          "name": "Mobile Phone Number",
          "id": 6
        },
        {
          "code": "employeeId",
          "name": "Employee ID",
          "id": 8
        },
        {
          "code": "floorWarden",
          "name": "Floor Warden",
          "id": 12
        },
        {
          "code": "specialNeeds",
          "name": "Special Needs",
          "id": 13
        },
        {
          "code": "comments",
          "name": "Comments",
          "id": 14
        },
        {
          "code": "alternateDelivery",
          "name": "Alternate Delivery",
          "id": 16
        },
        {
          "code": "knownAs",
          "name": "Known As",
          "id": 17
        }
      ]
    },
    "email": "hansolo@iofficecorp.com"
  },
  "tasksValueMap": {
    "10": {
      "other": "Need a Bigger TV",
      "notes": "Samsung or Sony",
      "whiteBoard": "Yes",
      "deskChair": "Yes",
      "sideChair": "Yes"
    }
  }
}

Edit a Move Request Item
PUT/move/requests/items/{id}

To update a Move Request Item send JSON with the Move Request Item’s ID and updated value for one or more of the attributes.

Example URI

PUT /move/requests/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Move Request Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
   {
     "id": 23,
     "name": 'New Name',
   }
 }
Response  200

Remove a Move Request Item
DELETE/move/requests/items/{id}

Example URI

DELETE /move/requests/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Move Request Item

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Create a Move Request Item
POST/move/requests/items/

The following attributes are required to create a Move Request Item: request id, type id,

One or more of the following attributes may also be required depending on the request item type: user id, asset id, toRoom id.

Example URI

POST /move/requests/items/
Request
HideShow
Headers
Content-Type: application/json
Body
{
     "request": {
         "id": 1
     },
     "toRoom": {
         "id": 2
      },
     "type": {
       "id": 2
     },
     "user": {
       "id": 9,
       "lastName": "Admin",
       "extension": "",
       "employeeId": "",
       "userName": "hansolo",
       "specialNeeds": false,
       "firstName": "Han",
       "phone": "",
       "name": "Han Solo",
       "email": "hansolo@iofficecorp.com"
     },
   }
Response  201
HideShow
Body
{
     "request": {
         "id": 1
     },
     "toRoom": {
         "id": 2
     },
     "type": {
       "id": 2
     },
     "user": {
       "id": 9,
       "lastName": "Admin",
       "extension": "",
       "employeeId": "",
       "userName": "hansolo",
       "specialNeeds": false,
       "firstName": "Han",
       "phone": "",
       "name": "Han Solo",
       "email": "hansolo@iofficecorp.com"
     },
   }

Move Item Collection

List of all Move Request Items
GET/move/requests/items/{?requestId}

Example URI

GET /move/requests/items/?requestId=210
URI Parameters
HideShow
requestId
number (optional) Example: 210

Retrieves all move request items associated with the move request specified by the parameter.

Response  200
HideShow

JSON representation of the Move Item Resource

Headers
Content-Type: application/json
Body
[
       {
          "toRoom":{
             "dateCreated":1465572191247,
             "reservable":false,
             "name":"49.0",
             "description":"",
             "id":416,
             "floor":{
                "area":23600.0167,
                "dateCreated":1465572160000,
                "drawingAvailable":true,
                "name":"1",
                "id":2,
                "building":{
                   "address":{
                      "country":{
                         "defaultSelected":true,
                         "subdivisionCategoryName":"state",
                         "alpha2Code":"US",
                         "isoCode":"US",
                         "name":"United States of America (the)",
                         "id":223
                      },
                      "city":"Houston",
                      "postalCode":"",
                      "state":{
                         "defaultSelected":false,
                         "code":"",
                         "name":"Other",
                         "id":70
                      }
                   },
                   "dateCreated":1465572158677,
                   "metric":false,
                   "name":"Built",
                   "id":44,
                   "dateUpdated":1465572159707
                },
                "dateUpdated":1465572186757
             },
             "type":{
                "hexColor":"33cc99",
                "color":{
            },
            "name":"WKST",
            "occupiable":true,
            "id":1,
            "parkingSpace":false
         },
         "capacity":1
      },
      "toRoomAvailable":true,
      "name":"Han Solo",
      "id":31201,
      "type":{
         "dateCreated":1067272496850,
         "name":"Employee Move",
         "id":2,
         "fields":[
            {
               "code":"firstName",
               "name":"First Name",
               "id":17
            },
            {
               "code":"lastName",
               "name":"Last Name",
               "id":18
            },
            {
               "code":"phone",
               "name":"Phone",
               "id":19
            },
            {
               "code":"extension",
               "name":"Extension",
               "id":20
            },
            {
               "code":"costCenter",
               "name":"Cost Center",
               "id":21
            },
            {
               "code":"employeeId",
               "name":"Employee ID",
               "id":22
            },
            {
               "code":"email",
               "name":"Email",
               "id":23
            }
         ],
         "typeCode":"move"
      },
      "user":{
         "floorWarden":false,
         "lastName":"Admin",
         "extension":"",
         "color":"#8cf7a4",
         "employeeId":"",
         "userName":"hansolo",
         "specialNeeds":false,
         "dateUpdated":1488566587390,
         "firstName":"Han",
         "dateCreated":1464727067663,
         "phone":"",
         "name":"Han Solo",
         "mailStop":{
            "name":"Stop 1",
            "id":140
         },
         "userType":{
            "dateCreated":1430925570820,
            "name":"Employee",
            "id":1,
            "fields":[
               {
                  "code":"company",
                  "name":"Company",
                  "id":1
               },
               {
                  "code":"jobTitle",
                  "name":"Job Title",
                  "id":2
               },
               {
                  "code":"phone",
                  "name":"Phone",
                  "id":3
               },
               {
                  "code":"extension",
                  "name":"Extension",
                  "id":4
               },
               {
                  "code":"mobile",
                  "name":"Mobile Phone Number",
                  "id":6
               },
               {
                  "code":"employeeId",
                  "name":"Employee ID",
                  "id":8
               },
               {
                  "code":"floorWarden",
                  "name":"Floor Warden",
                  "id":12
               },
               {
                  "code":"specialNeeds",
                  "name":"Special Needs",
                  "id":13
               },
               {
                  "code":"comments",
                  "name":"Comments",
                  "id":14
               },
               {
                  "code":"alternateDelivery",
                  "name":"Alternate Delivery",
                  "id":16
               },
               {
                  "code":"knownAs",
                  "name":"Known As",
                  "id":17
               }
            ]
         },
         "email":"hansolo@iofficecorp.com"
      },
      "tasksValueMap":{
         "10":{
            "other":"Need a Bigger TV",
            "notes":"Samsung or Sony",
            "whiteBoard":"Yes",
            "deskChair":"Yes",
            "sideChair":"Yes"
         }
      }
   },
   ...
]

Archived Move Requests

A single archived move request

Retrieve a single Archived Request
GET/move/requests/archived/{id}

Example URI

GET /move/requests/archived/id
URI Parameters
HideShow
id
String (required) 

ID of the archived move request

Response  200
HideShow

JSON representation of the Archived Move Resource

Headers
Content-Type: application/json
Body
{
  "date": 1593748206540,
  "requester": {
    "costCenter1": "",
    "assistantName": "",
    "jobTitle": "",
    "postalCode": "",
    "custom02": "",
    "custom01": "",
    "custom04": "",
    "custom03": "",
    "custom06": "",
    "knownAs": "",
    "custom05": "",
    "custom08": "",
    "custom07": "",
    "custom09": "",
    "id": 1,
    "state": "",
    "fax": "",
    "costCenter2": "",
    "floorWarden": false,
    "custom30": "",
    "firstName": "Customer",
    "phone": "",
    "name": "Customer Service",
    "mailStop": {
      "name": "Stop 1",
      "id": 139
    },
    "userType": {
      "name": "New Type",
      "id": 2,
      "dateUpdated": 1576816332180
    },
    "lastName": "Service",
    "extension": "",
    "color": "#694A9F",
    "city": "",
    "specialNeeds": false,
    "custom20": "",
    "custom22": "",
    "custom21": "",
    "custom24": "",
    "custom23": "",
    "dateCreated": 1099859525000,
    "custom26": "",
    "custom25": "",
    "custom28": "",
    "custom27": "",
    "custom29": "",
    "company": "",
    "department": "",
    "address": "",
    "comments": "",
    "mobile": "",
    "employeeId": "",
    "userName": "ioffice",
    "room": {
      "area": 0,
      "longDescription": "",
      "reservable": true,
      "description": "testing 1234",
      "type": {
        "hexColor": "03fff7",
        "contentFlag": 1,
        "cost": 0,
        "color": {},
        "name": "OFFICE",
        "occupiable": false,
        "id": 100,
        "parkingSpace": false,
        "dateUpdated": 1585874142457,
        "typeCode": ""
      },
      "capacity": 5,
      "dateUpdated": 1595325880387,
      "dateCreated": 1580232955383,
      "googleData": {
        "googleCalResourceId": "MQUeSi6xcKSkkCvlbn65_aOFBjs",
        "googleCalAddress": "testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
      },
      "name": "NotNewRoomr",
      "remoteInfo": "",
      "id": 13,
      "floor": {
        "area": 3808,
        "dateCreated": 1563467606570,
        "drawingAvailable": false,
        "name": "Conference Room",
        "id": 2,
        "building": {
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "1210 W Clay St",
            "postalCode": "",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1563380090677,
          "metric": true,
          "name": "Building 1",
          "location": {},
          "id": 44,
          "revitLink": "",
          "costCenters": [],
          "dateUpdated": 1591819645633
        },
        "dateUpdated": 1591989677357
      }
    },
    "dateUpdated": 1563379891283,
    "custom11": "",
    "custom10": "",
    "custom13": "",
    "custom12": "",
    "custom15": "",
    "custom14": "",
    "custom17": "",
    "custom16": "",
    "custom19": "",
    "custom18": "",
    "middleName": ""
  },
  "lastUpdatedBy": {
    "costCenter1": "",
    "assistantName": "",
    "jobTitle": "",
    "postalCode": "",
    "custom02": "",
    "custom01": "",
    "custom04": "",
    "custom03": "",
    "custom06": "",
    "knownAs": "",
    "custom05": "",
    "custom08": "",
    "custom07": "",
    "custom09": "",
    "id": 1,
    "state": "",
    "fax": "",
    "costCenter2": "",
    "floorWarden": false,
    "custom30": "",
    "firstName": "Customer",
    "phone": "",
    "name": "Customer Service",
    "mailStop": {
      "name": "Stop 1",
      "id": 139
    },
    "userType": {
      "name": "New Type",
      "id": 2,
      "dateUpdated": 1576816332180
    },
    "lastName": "Service",
    "extension": "",
    "color": "#694A9F",
    "city": "",
    "specialNeeds": false,
    "custom20": "",
    "custom22": "",
    "custom21": "",
    "custom24": "",
    "custom23": "",
    "dateCreated": 1099859525000,
    "custom26": "",
    "custom25": "",
    "custom28": "",
    "custom27": "",
    "custom29": "",
    "company": "",
    "department": "",
    "address": "",
    "comments": "",
    "mobile": "",
    "employeeId": "",
    "userName": "ioffice",
    "room": {
      "area": 0,
      "longDescription": "",
      "reservable": true,
      "description": "testing 1234",
      "type": {
        "hexColor": "03fff7",
        "contentFlag": 1,
        "cost": 0,
        "color": {},
        "name": "OFFICE",
        "occupiable": false,
        "id": 100,
        "parkingSpace": false,
        "dateUpdated": 1585874142457,
        "typeCode": ""
      },
      "capacity": 5,
      "dateUpdated": 1595325880387,
      "dateCreated": 1580232955383,
      "googleData": {
        "googleCalResourceId": "MQUeSi6xcKSkkCvlbn65_aOFBjs",
        "googleCalAddress": "testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
      },
      "name": "NotNewRoomr",
      "remoteInfo": "",
      "id": 13,
      "floor": {
        "area": 3808,
        "dateCreated": 1563467606570,
        "drawingAvailable": false,
        "name": "Conference Room",
        "id": 2,
        "building": {
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "1210 W Clay St",
            "postalCode": "",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1563380090677,
          "metric": true,
          "name": "Building 1",
          "location": {},
          "id": 44,
          "revitLink": "",
          "costCenters": [],
          "dateUpdated": 1591819645633
        },
        "dateUpdated": 1591989677357
      }
    },
    "dateUpdated": 1563379891283,
    "custom11": "",
    "custom10": "",
    "custom13": "",
    "custom12": "",
    "custom15": "",
    "custom14": "",
    "custom17": "",
    "custom16": "",
    "custom19": "",
    "custom18": "",
    "middleName": ""
  },
  "comments": [],
  "center": {
    "name": "Move Center",
    "id": 75
  },
  "description": "Customer Service's Move Request (7/02)",
  "completed": false,
  "enteredBy": {
    "costCenter1": "",
    "assistantName": "",
    "jobTitle": "",
    "postalCode": "",
    "custom02": "",
    "custom01": "",
    "custom04": "",
    "custom03": "",
    "custom06": "",
    "knownAs": "",
    "custom05": "",
    "custom08": "",
    "custom07": "",
    "custom09": "",
    "id": 1,
    "state": "",
    "fax": "",
    "costCenter2": "",
    "floorWarden": false,
    "custom30": "",
    "firstName": "Customer",
    "phone": "",
    "name": "Customer Service",
    "mailStop": {
      "name": "Stop 1",
      "id": 139
    },
    "userType": {
      "name": "New Type",
      "id": 2,
      "dateUpdated": 1576816332180
    },
    "lastName": "Service",
    "extension": "",
    "color": "#694A9F",
    "city": "",
    "specialNeeds": false,
    "custom20": "",
    "custom22": "",
    "custom21": "",
    "custom24": "",
    "custom23": "",
    "dateCreated": 1099859525000,
    "custom26": "",
    "custom25": "",
    "custom28": "",
    "custom27": "",
    "custom29": "",
    "company": "",
    "department": "",
    "address": "",
    "comments": "",
    "mobile": "",
    "employeeId": "",
    "userName": "ioffice",
    "room": {
      "area": 0,
      "longDescription": "",
      "reservable": true,
      "description": "testing 1234",
      "type": {
        "hexColor": "03fff7",
        "contentFlag": 1,
        "cost": 0,
        "color": {},
        "name": "OFFICE",
        "occupiable": false,
        "id": 100,
        "parkingSpace": false,
        "dateUpdated": 1585874142457,
        "typeCode": ""
      },
      "capacity": 5,
      "dateUpdated": 1595325880387,
      "dateCreated": 1580232955383,
      "googleData": {
        "googleCalResourceId": "MQUeSi6xcKSkkCvlbn65_aOFBjs",
        "googleCalAddress": "testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
      },
      "name": "NotNewRoomr",
      "remoteInfo": "",
      "id": 13,
      "floor": {
        "area": 3808,
        "dateCreated": 1563467606570,
        "drawingAvailable": false,
        "name": "Conference Room",
        "id": 2,
        "building": {
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "1210 W Clay St",
            "postalCode": "",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1563380090677,
          "metric": true,
          "name": "Building 1",
          "location": {},
          "id": 44,
          "revitLink": "",
          "costCenters": [],
          "dateUpdated": 1591819645633
        },
        "dateUpdated": 1591989677357
      }
    },
    "dateUpdated": 1563379891283,
    "custom11": "",
    "custom10": "",
    "custom13": "",
    "custom12": "",
    "custom15": "",
    "custom14": "",
    "custom17": "",
    "custom16": "",
    "custom19": "",
    "custom18": "",
    "middleName": ""
  },
  "dateUpdated": 1593748316627,
  "approved": false,
  "dateCreated": 1593748206540,
  "id": 209,
  "status": {
    "code": "sub",
    "dateCreated": 1185984126540,
    "name": "In Progress",
    "id": 10,
    "locked": true
  }
}

Archived Move Collection

List of all Archived Move Requests
GET/move/requests/archived/{?modifiedOrCreatedAfter}

Example URI

GET /move/requests/archived/?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified/created items in the collection.

Response  200
HideShow

JSON representation of the archived move collection resource

Headers
Content-Type: application/json
Body
[
           {
              "date":1593748206540,
              "requester":{
                 "costCenter1":"",
                 "assistantName":"",
                 "jobTitle":"",
                 "postalCode":"",
                 "custom02":"",
                 "custom01":"",
                 "custom04":"",
                 "custom03":"",
                 "custom06":"",
                 "knownAs":"",
                 "custom05":"",
                 "custom08":"",
                 "custom07":"",
                 "custom09":"",
                 "id":1,
                 "state":"",
                 "fax":"",
                 "costCenter2":"",
                 "floorWarden":false,
                 "custom30":"",
                 "firstName":"Customer",
                 "phone":"",
                 "name":"Customer Service",
                 "mailStop":{
                    "name":"Stop 1",
                    "id":139
                 },
                 "userType":{
                    "name":"New Type",
                    "id":2,
                    "dateUpdated":1576816332180
                 },
                 "lastName":"Service",
                 "extension":"",
                 "color":"#694A9F",
                 "city":"",
                 "specialNeeds":false,
                 "custom20":"",
                 "custom22":"",
                 "custom21":"",
                 "custom24":"",
                 "custom23":"",
                 "dateCreated":1099859525000,
                 "custom26":"",
                 "custom25":"",
                 "custom28":"",
                 "custom27":"",
                 "custom29":"",
                 "company":"",
                 "department":"",
                 "address":"",
                 "comments":"",
                 "mobile":"",
                 "employeeId":"",
                 "userName":"ioffice",
                 "room":{
                    "area":0.0,
                    "longDescription":"",
                    "reservable":true,
                    "description":"testing 1234",
                    "type":{
                       "hexColor":"03fff7",
                       "contentFlag":1,
                       "cost":0.0,
                       "color":{
                    },
                   "name":"OFFICE",
                   "occupiable":false,
                   "id":100,
                   "parkingSpace":false,
                   "dateUpdated":1585874142457,
                   "typeCode":""
                },
                "capacity":5,
                "dateUpdated":1595325880387,
                "dateCreated":1580232955383,
                "googleData":{
                   "googleCalResourceId":"MQUeSi6xcKSkkCvlbn65_aOFBjs",
                   "googleCalAddress":"testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
                },
                "name":"NotNewRoomr",
                "remoteInfo":"",
                "id":13,
                "floor":{
                   "area":3808.0,
                   "dateCreated":1563467606570,
                   "drawingAvailable":false,
                   "name":"Conference Room",
                   "id":2,
                   "building":{
                      "address":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "city":"Houston",
                         "street":"1210 W Clay St",
                         "postalCode":"",
                         "state":{
                            "country":{
                               "defaultSelected":true,
                               "subdivisionCategoryName":"state",
                               "alpha2Code":"US",
                               "isoCode":"US",
                               "name":"United States of America (the)",
                               "id":223
                            },
                            "defaultSelected":false,
                            "code":"TX",
                            "name":"Texas",
                            "id":61,
                            "categoryName":"state"
                         }
                      },
                      "dateCreated":1563380090677,
                      "metric":true,
                      "name":"Building 1",
                      "location":{

                      },
                      "id":44,
                      "revitLink":"",
                      "costCenters":[

                      ],
                      "dateUpdated":1591819645633
                   },
                   "dateUpdated":1591989677357
                }
             },
             "dateUpdated":1563379891283,
             "custom11":"",
             "custom10":"",
             "custom13":"",
             "custom12":"",
             "custom15":"",
             "custom14":"",
             "custom17":"",
             "custom16":"",
             "custom19":"",
             "custom18":"",
             "middleName":""
          },
          "lastUpdatedBy":{
             "costCenter1":"",
             "assistantName":"",
             "jobTitle":"",
             "postalCode":"",
             "custom02":"",
             "custom01":"",
             "custom04":"",
             "custom03":"",
             "custom06":"",
             "knownAs":"",
             "custom05":"",
             "custom08":"",
             "custom07":"",
             "custom09":"",
             "id":1,
             "state":"",
             "fax":"",
             "costCenter2":"",
             "floorWarden":false,
             "custom30":"",
             "firstName":"Customer",
             "phone":"",
             "name":"Customer Service",
             "mailStop":{
                "name":"Stop 1",
                "id":139
             },
             "userType":{
                "name":"New Type",
                "id":2,
                "dateUpdated":1576816332180
             },
             "lastName":"Service",
             "extension":"",
             "color":"#694A9F",
             "city":"",
             "specialNeeds":false,
             "custom20":"",
             "custom22":"",
             "custom21":"",
             "custom24":"",
             "custom23":"",
             "dateCreated":1099859525000,
             "custom26":"",
             "custom25":"",
             "custom28":"",
             "custom27":"",
             "custom29":"",
             "company":"",
             "department":"",
             "address":"",
             "comments":"",
             "mobile":"",
             "employeeId":"",
             "userName":"ioffice",
             "room":{
                "area":0.0,
                "longDescription":"",
                "reservable":true,
                "description":"testing 1234",
                "type":{
                   "hexColor":"03fff7",
                   "contentFlag":1,
                   "cost":0.0,
                   "color":{

                   },
                   "name":"OFFICE",
                   "occupiable":false,
                   "id":100,
                   "parkingSpace":false,
                   "dateUpdated":1585874142457,
                   "typeCode":""
                },
                "capacity":5,
                "dateUpdated":1595325880387,
                "dateCreated":1580232955383,
                "googleData":{
                   "googleCalResourceId":"MQUeSi6xcKSkkCvlbn65_aOFBjs",
                   "googleCalAddress":"testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
                },
                "name":"NotNewRoomr",
                "remoteInfo":"",
                "id":13,
                "floor":{
                   "area":3808.0,
                   "dateCreated":1563467606570,
                   "drawingAvailable":false,
                   "name":"Conference Room",
                   "id":2,
                   "building":{
                      "address":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "city":"Houston",
                         "street":"1210 W Clay St",
                         "postalCode":"",
                         "state":{
                            "country":{
                               "defaultSelected":true,
                               "subdivisionCategoryName":"state",
                               "alpha2Code":"US",
                               "isoCode":"US",
                               "name":"United States of America (the)",
                               "id":223
                            },
                            "defaultSelected":false,
                            "code":"TX",
                            "name":"Texas",
                            "id":61,
                            "categoryName":"state"
                         }
                      },
                      "dateCreated":1563380090677,
                      "metric":true,
                      "name":"Building 1",
                      "location":{

                      },
                      "id":44,
                      "revitLink":"",
                      "costCenters":[

                      ],
                      "dateUpdated":1591819645633
                   },
                   "dateUpdated":1591989677357
                }
             },
             "dateUpdated":1563379891283,
             "custom11":"",
             "custom10":"",
             "custom13":"",
             "custom12":"",
             "custom15":"",
             "custom14":"",
             "custom17":"",
             "custom16":"",
             "custom19":"",
             "custom18":"",
             "middleName":""
          },
          "comments":[

          ],
          "center":{
             "name":"Move Center",
             "id":75
          },
          "description":"Customer Service's Move Request (7/02)",
          "completed":false,
          "enteredBy":{
             "costCenter1":"",
             "assistantName":"",
             "jobTitle":"",
             "postalCode":"",
             "custom02":"",
             "custom01":"",
             "custom04":"",
             "custom03":"",
             "custom06":"",
             "knownAs":"",
             "custom05":"",
             "custom08":"",
             "custom07":"",
             "custom09":"",
             "id":1,
             "state":"",
             "fax":"",
             "costCenter2":"",
             "floorWarden":false,
             "custom30":"",
             "firstName":"Customer",
             "phone":"",
             "name":"Customer Service",
             "mailStop":{
                "name":"Stop 1",
                "id":139
             },
             "userType":{
                "name":"New Type",
                "id":2,
                "dateUpdated":1576816332180
             },
             "lastName":"Service",
             "extension":"",
             "color":"#694A9F",
             "city":"",
             "specialNeeds":false,
             "custom20":"",
             "custom22":"",
             "custom21":"",
             "custom24":"",
             "custom23":"",
             "dateCreated":1099859525000,
             "custom26":"",
             "custom25":"",
             "custom28":"",
             "custom27":"",
             "custom29":"",
             "company":"",
             "department":"",
             "address":"",
             "comments":"",
             "mobile":"",
             "employeeId":"",
             "userName":"ioffice",
             "room":{
                "area":0.0,
                "longDescription":"",
                "reservable":true,
                "description":"testing 1234",
                "type":{
                   "hexColor":"03fff7",
                   "contentFlag":1,
                   "cost":0.0,
                   "color":{

                   },
                   "name":"OFFICE",
                   "occupiable":false,
                   "id":100,
                   "parkingSpace":false,
                   "dateUpdated":1585874142457,
                   "typeCode":""
                },
                "capacity":5,
                "dateUpdated":1595325880387,
                "dateCreated":1580232955383,
                "googleData":{
                   "googleCalResourceId":"MQUeSi6xcKSkkCvlbn65_aOFBjs",
                   "googleCalAddress":"testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
                },
                "name":"NotNewRoomr",
                "remoteInfo":"",
                "id":13,
                "floor":{
                   "area":3808.0,
                   "dateCreated":1563467606570,
                   "drawingAvailable":false,
                   "name":"Conference Room",
                   "id":2,
                   "building":{
                      "address":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "city":"Houston",
                         "street":"1210 W Clay St",
                         "postalCode":"",
                         "state":{
                            "country":{
                               "defaultSelected":true,
                               "subdivisionCategoryName":"state",
                               "alpha2Code":"US",
                               "isoCode":"US",
                               "name":"United States of America (the)",
                               "id":223
                            },
                            "defaultSelected":false,
                            "code":"TX",
                            "name":"Texas",
                            "id":61,
                            "categoryName":"state"
                         }
                      },
                      "dateCreated":1563380090677,
                      "metric":true,
                      "name":"Building 1",
                      "location":{

                      },
                      "id":44,
                      "revitLink":"",
                      "costCenters":[

                      ],
                      "dateUpdated":1591819645633
                   },
                   "dateUpdated":1591989677357
                }
             },
             "dateUpdated":1563379891283,
             "custom11":"",
             "custom10":"",
             "custom13":"",
             "custom12":"",
             "custom15":"",
             "custom14":"",
             "custom17":"",
             "custom16":"",
             "custom19":"",
             "custom18":"",
             "middleName":""
          },
          "dateUpdated":1593748316627,
          "approved":false,
          "dateCreated":1593748206540,
          "id":209,
          "status":{
             "code":"sub",
             "dateCreated":1185984126540,
             "name":"In Progress",
             "id":10,
             "locked":true
          }
       },

       ...
]

Archived Move Request Items

A single move request item object.

Retrieve a single Archived Move Request Item
GET/move/requests/items/archived/{id}

Example URI

GET /move/requests/items/archived/id
URI Parameters
HideShow
id
string (required) 

ID of the Archived Move Request Item

Response  200
HideShow

JSON representation of the Archived Move Item Resource

Headers
Content-Type: application/json
Body
{
  "itemType": "USER",
  "toRoom": {
    "area": 400,
    "longDescription": "",
    "dateCreated": 1563381159400,
    "reservable": false,
    "name": "test room",
    "description": "",
    "id": 1,
    "type": {
      "hexColor": "ff3366",
      "contentFlag": 3,
      "cost": 0,
      "color": {},
      "name": "MAIL RM",
      "occupiable": true,
      "id": 105,
      "parkingSpace": false,
      "dateUpdated": 1583291717220,
      "typeCode": ""
    },
    "floor": {
      "area": 5000,
      "dateCreated": 1563381159233,
      "drawingAvailable": false,
      "name": "Floor 1",
      "id": 1,
      "building": {
        "address": {
          "country": {
            "defaultSelected": true,
            "subdivisionCategoryName": "state",
            "alpha2Code": "US",
            "isoCode": "US",
            "name": "United States of America (the)",
            "id": 223
          },
          "city": "Houston",
          "street": "1210 W Clay St",
          "postalCode": "",
          "state": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "dateCreated": 1563380090677,
        "metric": true,
        "name": "Building 1",
        "location": {},
        "id": 44,
        "revitLink": "",
        "costCenters": [],
        "dateUpdated": 1591819645633
      },
      "dateUpdated": 1584634081437
    },
    "capacity": 10,
    "dateUpdated": 1584634081683
  },
  "name": "Juan Delgado2",
  "fromRoom": {
    "area": 0,
    "longDescription": "",
    "reservable": true,
    "description": "testing 1234",
    "type": {
      "hexColor": "03fff7",
      "contentFlag": 1,
      "cost": 0,
      "color": {},
      "name": "OFFICE",
      "occupiable": false,
      "id": 100,
      "parkingSpace": false,
      "dateUpdated": 1585874142457,
      "typeCode": ""
    },
    "capacity": 5,
    "dateUpdated": 1595325880387,
    "dateCreated": 1580232955383,
    "googleData": {
      "googleCalResourceId": "MQUeSi6xcKSkkCvlbn65_aOFBjs",
      "googleCalAddress": "testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
    },
    "name": "NotNewRoomr",
    "remoteInfo": "",
    "id": 13,
    "floor": {
      "area": 3808,
      "dateCreated": 1563467606570,
      "drawingAvailable": false,
      "name": "Conference Room",
      "id": 2,
      "building": {
        "address": {
          "country": {
            "defaultSelected": true,
            "subdivisionCategoryName": "state",
            "alpha2Code": "US",
            "isoCode": "US",
            "name": "United States of America (the)",
            "id": 223
          },
          "city": "Houston",
          "street": "1210 W Clay St",
          "postalCode": "",
          "state": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "dateCreated": 1563380090677,
        "metric": true,
        "name": "Building 1",
        "location": {},
        "id": 44,
        "revitLink": "",
        "costCenters": [],
        "dateUpdated": 1591819645633
      },
      "dateUpdated": 1591989677357
    }
  },
  "id": 90783,
  "type": {
    "dateCreated": 1067272496850,
    "name": "Employee Move",
    "id": 2,
    "fields": [
      {
        "code": "firstName",
        "name": "First Name",
        "id": 17
      },
      {
        "code": "lastName",
        "name": "Last Name",
        "id": 18
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 19
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 20
      },
      {
        "code": "costCenter",
        "name": "Cost Center",
        "id": 21
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 22
      },
      {
        "code": "email",
        "name": "Email",
        "id": 23
      },
      {
        "code": "userName",
        "name": "Username",
        "id": 34
      }
    ],
    "dateUpdated": 1593107218917,
    "typeCode": "move"
  },
  "user": {
    "floorWarden": false,
    "costCenter1": "Category1",
    "lastName": "Delgado2",
    "color": "#F9ECEA",
    "costCenter": {
      "hexColor": "6987f5",
      "code": "DEP1",
      "dateCreated": 1564801237447,
      "depth": {
        "code": "dp",
        "dateCreated": 1181403915183,
        "level": 1,
        "name": "Department",
        "id": 2,
        "category": {
          "categoryType": [
            {
              "name": "user",
              "id": 1
            },
            {
              "name": "room",
              "id": 2
            }
          ],
          "code": "cost-center",
          "dateCreated": 1448999609433,
          "color": {},
          "name": "Cost Center",
          "id": 1
        }
      },
      "color": {},
      "name": "Department 1",
      "id": 5,
      "category": {
        "categoryType": [
          {
            "name": "user",
            "id": 1
          },
          {
            "name": "room",
            "id": 2
          }
        ],
        "code": "cost-center",
        "dateCreated": 1448999609433,
        "color": {},
        "name": "Cost Center",
        "id": 1
      },
      "costCenterParent": {
        "hexColor": "403ddb",
        "code": "CAT1",
        "dateCreated": 1564800251707,
        "depth": {
          "code": "co",
          "dateCreated": 1181403908747,
          "level": 0,
          "name": "Company",
          "id": 1,
          "category": {
            "categoryType": [
              {
                "name": "user",
                "id": 1
              },
              {
                "name": "room",
                "id": 2
              }
            ],
            "code": "cost-center",
            "dateCreated": 1448999609433,
            "color": {},
            "name": "Cost Center",
            "id": 1
          }
        },
        "color": {},
        "name": "Category1",
        "id": 1,
        "category": {
          "categoryType": [
            {
              "name": "user",
              "id": 1
            },
            {
              "name": "room",
              "id": 2
            }
          ],
          "code": "cost-center",
          "dateCreated": 1448999609433,
          "color": {},
          "name": "Cost Center",
          "id": 1
        },
        "dateUpdated": 1564782304360
      }
    },
    "userName": "jrdelgado",
    "specialNeeds": false,
    "room": {
      "area": 0,
      "longDescription": "",
      "reservable": true,
      "description": "testing 1234",
      "type": {
        "hexColor": "03fff7",
        "contentFlag": 1,
        "cost": 0,
        "color": {},
        "name": "OFFICE",
        "occupiable": false,
        "id": 100,
        "parkingSpace": false,
        "dateUpdated": 1585874142457,
        "typeCode": ""
      },
      "capacity": 5,
      "dateUpdated": 1595325880387,
      "dateCreated": 1580232955383,
      "googleData": {
        "googleCalResourceId": "MQUeSi6xcKSkkCvlbn65_aOFBjs",
        "googleCalAddress": "testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
      },
      "name": "NotNewRoomr",
      "remoteInfo": "",
      "id": 13,
      "floor": {
        "area": 3808,
        "dateCreated": 1563467606570,
        "drawingAvailable": false,
        "name": "Conference Room",
        "id": 2,
        "building": {
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "1210 W Clay St",
            "postalCode": "",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1563380090677,
          "metric": true,
          "name": "Building 1",
          "location": {},
          "id": 44,
          "revitLink": "",
          "costCenters": [],
          "dateUpdated": 1591819645633
        },
        "dateUpdated": 1591989677357
      }
    },
    "dateUpdated": 1592584651853,
    "firstName": "Juan",
    "dateCreated": 1570723843567,
    "name": "Juan Delgado2",
    "id": 55,
    "mailStop": {
      "name": "Stop 1",
      "id": 139
    },
    "userType": {
      "name": "New Type 2",
      "id": 3
    },
    "costCenter2": "Department 1",
    "email": "jdelgado@iofficecorp.com"
  }
}

Archived Move Request Item Collection

List of all Archived Move Request Items
GET/move/requests/items/archived/{?requestId}

Example URI

GET /move/requests/items/archived/?requestId=209
URI Parameters
HideShow
requestId
number (optional) Example: 209

Retrieves all archived move request items associated with the archived move request specified by the parameter.

Response  200
HideShow

JSON representation of the Archived Move Request Item resource.

Headers
Content-Type: application/json
Body
[
           {
              "itemType":"USER",
              "toRoom":{
                 "area":400.0,
                 "longDescription":"",
                 "dateCreated":1563381159400,
                 "reservable":false,
                 "name":"test room",
                 "description":"",
                 "id":1,
                 "type":{
                    "hexColor":"ff3366",
                    "contentFlag":3,
                    "cost":0.0,
                    "color":{
                 },
                "name":"MAIL RM",
                "occupiable":true,
                "id":105,
                "parkingSpace":false,
                "dateUpdated":1583291717220,
                "typeCode":""
             },
             "floor":{
                "area":5000.0,
                "dateCreated":1563381159233,
                "drawingAvailable":false,
                "name":"Floor 1",
                "id":1,
                "building":{
                   "address":{
                      "country":{
                         "defaultSelected":true,
                         "subdivisionCategoryName":"state",
                         "alpha2Code":"US",
                         "isoCode":"US",
                         "name":"United States of America (the)",
                         "id":223
                      },
                      "city":"Houston",
                      "street":"1210 W Clay St",
                      "postalCode":"",
                      "state":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "defaultSelected":false,
                         "code":"TX",
                         "name":"Texas",
                         "id":61,
                         "categoryName":"state"
                      }
                   },
                   "dateCreated":1563380090677,
                   "metric":true,
                   "name":"Building 1",
                   "location":{

                   },
                   "id":44,
                   "revitLink":"",
                   "costCenters":[

                   ],
                   "dateUpdated":1591819645633
                },
                "dateUpdated":1584634081437
             },
             "capacity":10,
             "dateUpdated":1584634081683
          },
          "name":"Juan Delgado2",
          "fromRoom":{
             "area":0.0,
             "longDescription":"",
             "reservable":true,
             "description":"testing 1234",
             "type":{
                "hexColor":"03fff7",
                "contentFlag":1,
                "cost":0.0,
                "color":{

                },
                "name":"OFFICE",
                "occupiable":false,
                "id":100,
                "parkingSpace":false,
                "dateUpdated":1585874142457,
                "typeCode":""
             },
             "capacity":5,
             "dateUpdated":1595325880387,
             "dateCreated":1580232955383,
             "googleData":{
                "googleCalResourceId":"MQUeSi6xcKSkkCvlbn65_aOFBjs",
                "googleCalAddress":"testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
             },
             "name":"NotNewRoomr",
             "remoteInfo":"",
             "id":13,
             "floor":{
                "area":3808.0,
                "dateCreated":1563467606570,
                "drawingAvailable":false,
                "name":"Conference Room",
                "id":2,
                "building":{
                   "address":{
                      "country":{
                         "defaultSelected":true,
                         "subdivisionCategoryName":"state",
                         "alpha2Code":"US",
                         "isoCode":"US",
                         "name":"United States of America (the)",
                         "id":223
                      },
                      "city":"Houston",
                      "street":"1210 W Clay St",
                      "postalCode":"",
                      "state":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "defaultSelected":false,
                         "code":"TX",
                         "name":"Texas",
                         "id":61,
                         "categoryName":"state"
                      }
                   },
                   "dateCreated":1563380090677,
                   "metric":true,
                   "name":"Building 1",
                   "location":{

                   },
                   "id":44,
                   "revitLink":"",
                   "costCenters":[

                   ],
                   "dateUpdated":1591819645633
                },
                "dateUpdated":1591989677357
             }
          },
          "id":90783,
          "type":{
             "dateCreated":1067272496850,
             "name":"Employee Move",
             "id":2,
             "fields":[
                {
                   "code":"firstName",
                   "name":"First Name",
                   "id":17
                },
                {
                   "code":"lastName",
                   "name":"Last Name",
                   "id":18
                },
                {
                   "code":"phone",
                   "name":"Phone",
                   "id":19
                },
                {
                   "code":"extension",
                   "name":"Extension",
                   "id":20
                },
                {
                   "code":"costCenter",
                   "name":"Cost Center",
                   "id":21
                },
                {
                   "code":"employeeId",
                   "name":"Employee ID",
                   "id":22
                },
                {
                   "code":"email",
                   "name":"Email",
                   "id":23
                },
                {
                   "code":"userName",
                   "name":"Username",
                   "id":34
                }
             ],
             "dateUpdated":1593107218917,
             "typeCode":"move"
          },
          "user":{
             "floorWarden":false,
             "costCenter1":"Category1",
             "lastName":"Delgado2",
             "color":"#F9ECEA",
             "costCenter":{
                "hexColor":"6987f5",
                "code":"DEP1",
                "dateCreated":1564801237447,
                "depth":{
                   "code":"dp",
                   "dateCreated":1181403915183,
                   "level":1,
                   "name":"Department",
                   "id":2,
                   "category":{
                      "categoryType":[
                         {
                            "name":"user",
                            "id":1
                         },
                         {
                            "name":"room",
                            "id":2
                         }
                      ],
                      "code":"cost-center",
                      "dateCreated":1448999609433,
                      "color":{

                      },
                      "name":"Cost Center",
                      "id":1
                   }
                },
                "color":{

                },
                "name":"Department 1",
                "id":5,
                "category":{
                   "categoryType":[
                      {
                         "name":"user",
                         "id":1
                      },
                      {
                         "name":"room",
                         "id":2
                      }
                   ],
                   "code":"cost-center",
                   "dateCreated":1448999609433,
                   "color":{

                   },
                   "name":"Cost Center",
                   "id":1
                },
                "costCenterParent":{
                   "hexColor":"403ddb",
                   "code":"CAT1",
                   "dateCreated":1564800251707,
                   "depth":{
                      "code":"co",
                      "dateCreated":1181403908747,
                      "level":0,
                      "name":"Company",
                      "id":1,
                      "category":{
                         "categoryType":[
                            {
                               "name":"user",
                               "id":1
                            },
                            {
                               "name":"room",
                               "id":2
                            }
                         ],
                         "code":"cost-center",
                         "dateCreated":1448999609433,
                         "color":{

                         },
                         "name":"Cost Center",
                         "id":1
                      }
                   },
                   "color":{

                   },
                   "name":"Category1",
                   "id":1,
                   "category":{
                      "categoryType":[
                         {
                            "name":"user",
                            "id":1
                         },
                         {
                            "name":"room",
                            "id":2
                         }
                      ],
                      "code":"cost-center",
                      "dateCreated":1448999609433,
                      "color":{

                      },
                      "name":"Cost Center",
                      "id":1
                   },
                   "dateUpdated":1564782304360
                }
             },
             "userName":"jrdelgado",
             "specialNeeds":false,
             "room":{
                "area":0.0,
                "longDescription":"",
                "reservable":true,
                "description":"testing 1234",
                "type":{
                   "hexColor":"03fff7",
                   "contentFlag":1,
                   "cost":0.0,
                   "color":{

                   },
                   "name":"OFFICE",
                   "occupiable":false,
                   "id":100,
                   "parkingSpace":false,
                   "dateUpdated":1585874142457,
                   "typeCode":""
                },
                "capacity":5,
                "dateUpdated":1595325880387,
                "dateCreated":1580232955383,
                "googleData":{
                   "googleCalResourceId":"MQUeSi6xcKSkkCvlbn65_aOFBjs",
                   "googleCalAddress":"testcalendar.net_1887u0ufemsraieomea5r8p2bdf3m@resource.calendar.google.com"
                },
                "name":"NotNewRoomr",
                "remoteInfo":"",
                "id":13,
                "floor":{
                   "area":3808.0,
                   "dateCreated":1563467606570,
                   "drawingAvailable":false,
                   "name":"Conference Room",
                   "id":2,
                   "building":{
                      "address":{
                         "country":{
                            "defaultSelected":true,
                            "subdivisionCategoryName":"state",
                            "alpha2Code":"US",
                            "isoCode":"US",
                            "name":"United States of America (the)",
                            "id":223
                         },
                         "city":"Houston",
                         "street":"1210 W Clay St",
                         "postalCode":"",
                         "state":{
                            "country":{
                               "defaultSelected":true,
                               "subdivisionCategoryName":"state",
                               "alpha2Code":"US",
                               "isoCode":"US",
                               "name":"United States of America (the)",
                               "id":223
                            },
                            "defaultSelected":false,
                            "code":"TX",
                            "name":"Texas",
                            "id":61,
                            "categoryName":"state"
                         }
                      },
                      "dateCreated":1563380090677,
                      "metric":true,
                      "name":"Building 1",
                      "location":{

                      },
                      "id":44,
                      "revitLink":"",
                      "costCenters":[

                      ],
                      "dateUpdated":1591819645633
                   },
                   "dateUpdated":1591989677357
                }
             },
             "dateUpdated":1592584651853,
             "firstName":"Juan",
             "dateCreated":1570723843567,
             "name":"Juan Delgado2",
             "id":55,
             "mailStop":{
                "name":"Stop 1",
                "id":139
             },
             "userType":{
                "name":"New Type 2",
                "id":3
             },
             "costCenter2":"Department 1",
             "email":"jdelgado@iofficecorp.com"
          }
       },

       ...
]

Get Move Status Ids

Get move status ids

Retrieve Move Status Ids
GET/move/statuses

Example URI

GET /move/statuses
Response  200
HideShow
Headers
Content-Type: application/json
Body
[
     {
        code: "pen",
        dateCreated: 1195932197043,
        name: "Pending",
        id: 15
     },
     {
        code: "apr",
        dateCreated: 1195932197030,
        name: "Approved by Manager",
        id: 14
     },
     {
        code: "sub",
        dateCreated: 1185984126540,
        name: "In Progress",
        id: 10
     },
     {
        code: "0",
        dateCreated: 1202693678817,
        name: "Rejected",
        id: 16
     }
   ]

Get Move Request Type Ids

Get move request type ids

Retrieve Move Request Type Ids
GET/move/requestTypes

Example URI

GET /move/requestTypes
Response  200
HideShow
Headers
Content-Type: application/json
Body
[
  {
    "dateCreated": 1067272496850,
    "name": "Employee Move",
    "id": 2,
    "fields": [
      {
        "code": "firstName",
        "name": "First Name",
        "id": 17
      },
      {
        "code": "lastName",
        "name": "Last Name",
        "id": 18
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 19
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 20
      },
      {
        "code": "costCenter",
        "name": "Cost Center",
        "id": 21
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 22
      },
      {
        "code": "email",
        "name": "Email",
        "id": 23
      }
    ],
    "typeCode": "move"
  },
  {
    "dateCreated": 1064943098163,
    "name": "New Person",
    "id": 1,
    "fields": [
      {
        "code": "firstName",
        "name": "First Name",
        "id": 10
      },
      {
        "code": "lastName",
        "name": "Last Name",
        "id": 11
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 12
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 13
      },
      {
        "code": "costCenter",
        "name": "Cost Center",
        "id": 14
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 15
      },
      {
        "code": "email",
        "name": "Email",
        "id": 16
      }
    ],
    "typeCode": "new"
  },
  {
    "dateCreated": 1067272669320,
    "name": "Exiting Employee",
    "id": 6,
    "fields": [
      {
        "code": "firstName",
        "name": "First Name",
        "id": 24
      },
      {
        "code": "lastName",
        "name": "Last Name",
        "id": 25
      },
      {
        "code": "phone",
        "name": "Phone",
        "id": 26
      },
      {
        "code": "extension",
        "name": "Extension",
        "id": 27
      },
      {
        "code": "costCenter",
        "name": "Cost Center",
        "id": 28
      },
      {
        "code": "employeeId",
        "name": "Employee ID",
        "id": 29
      },
      {
        "code": "email",
        "name": "Email",
        "id": 30
      }
    ],
    "typeCode": "terminate"
  },
  {
    "dateCreated": 1067272647150,
    "name": "Move Office Equipment",
    "id": 5,
    "fields": [],
    "typeCode": "move"
  }
]

Get Move Tasks

Get move tasks

Retrieve Move Tasks
GET/move/tasks

Example URI

GET /move/tasks
Response  200
HideShow
Headers
Content-Type: application/json
Body
[  
   {  
      "dateCreated":1224355565670,
      "name":"Network Services",
      "id":1,
      "fields":[  
         {  
            "code":"pcType",
            "name":"PC Type",
            "id":4
         },
         {  
            "code":"notes",
            "name":"Notes",
            "id":5
         },
         {  
            "code":"printer",
            "name":"Printer?",
            "id":12
         },
         {  
            "code":"localQueue",
            "name":"Local Queue",
            "id":26
         }
      ]
   },
   ...   {  
      "dateCreated":1224355565670,
      "name":"Furniture",
      "id":10,
      "fields":[  
         {  
            "code":"deskChair",
            "name":"Desk Chair?",
            "id":42
         },
         {  
            "code":"sideChair",
            "name":"Side Chair?",
            "id":43
         },
         {  
            "code":"whiteBoard",
            "name":"White Board?",
            "id":44
         },
         {  
            "code":"other",
            "name":"Other?",
            "id":45
         },
         {  
            "code":"notes",
            "name":"Notes",
            "id":46
         }
      ]
   }
]

Stacking Diagram

Stacking Diagram related resources of iOffice API

Retrieve All Move Plans
GET/move/plans

This API retrieves the details of all Move Plans from Stacking Diagram Page

Example URI

GET /move/plans
Response  200
HideShow
Body
[
           {
                    "depth": {
                        "code": "co",
                        "dateCreated": 1181403908747,
                        "level": 0,
                        "name": "Company",
                        "id": 1,
                        "category": {
                            "code": "Please do not modify/remove!",
                            "dateCreated": 1448999612493,
                            "color": {},
                            "name": "Default Category",
                            "id": 1,
                            "dateUpdated": 1465489481990
                        }
                    },
                    "center": {
                        "name": "Move Center",
                        "id": 77
                    },
                    "changes": [
                        {
                            "categoryItem": {
                                "hexColor": "ffffcc",
                                "code": "Please do not modify/remove!",
                                "dateCreated": 1464968087173,
                                "depth": {
                                    "code": "co",
                                    "dateCreated": 1181403908747,
                                    "level": 0,
                                    "name": "Company",
                                    "id": 1,
                                    "category": {
                                        "code": "Please do not modify/remove!",
                                        "dateCreated": 1448999612493,
                                        "color": {},
                                        "name": "Default Category",
                                        "id": 1,
                                        "dateUpdated": 1465489481990
                                     }
                                },
                                "color": {},
                                "name": "North America",
                                "id": 199,
                                "category": {
                                    "code": "Please do not modify/remove!",
                                    "dateCreated": 1448999612493,
                                    "color": {},
                                    "name": "Default Category",
                                    "id": 1,
                                    "dateUpdated": 1465489481990
                                },
                                "dateUpdated": 1464988286367
                            },
                            "toFloor": {
                                "area": 19662.6148,
                                "meRatio": 1.75,
                                "dateCreated": 1522704303613,
                                "drawingAvailable": true,
                                "interiorGross": 0.0,
                                "name": "2",
                                "leaseArea": 0.0,
                                "id": 50,
                                "building": {
                                    "meRatio": 2.5,
                                    "code": "VIEW",
                                    "address": {
                                        "country": {
                                            "defaultSelected": true,
                                            "subdivisionCategoryName": "state",
                                            "alpha2Code": "US",
                                            "isoCode": "US",
                                            "name": "United States of America (the)",
                                            "id": 223
                                        },
                                        "city": "Houston",
                                        "street": "901 Bagby St",
                                        "postalCode": "77002",
                                        "state": {
                                            "country": {
                                                "defaultSelected": true,
                                                "subdivisionCategoryName": "state",
                                                "alpha2Code": "US",
                                                "isoCode": "US",
                                                "name": "United States of America (the)",
                                                "id": 223
                                            },
                                            "defaultSelected": false,
                                            "code": "TX",
                                            "name": "Texas",
                                            "id": 61,
                                            "categoryName": "state"
                                        }
                                    },
                                    "dateCreated": 1473436298227,
                                    "metric": false,
                                    "name": "View Only",
                                    "location": {},
                                    "revitLink": "",
                                    "id": 65,
                                    "weRatio": 1.75,
                                    "dateUpdated": 1674812048407,
                                    "costCenters": []
                                },
                                "dateUpdated": 1600271522433
                            },
                            "fromFloor": {
                                "area": 15338.417,
                                "meRatio": 1.65,
                                "dateCreated": 1473436298897,
                                "drawingAvailable": true,
                                "interiorGross": 0.0,
                                "name": "1",
                                "leaseArea": 0.0,
                                "id": 41,
                                "weRatio": 0.95,
                                "building": {
                                    "meRatio": 2.5,
                                    "code": "VIEW",
                                    "address": {
                                        "country": {
                                            "defaultSelected": true,
                                            "subdivisionCategoryName": "state",
                                            "alpha2Code": "US",
                                            "isoCode": "US",
                                            "name": "United States of America (the)",
                                            "id": 223
                                        },
                                        "city": "Houston",
                                        "street": "901 Bagby St",
                                        "postalCode": "77002",
                                        "state": {
                                            "country": {
                                                "defaultSelected": true,
                                                "subdivisionCategoryName": "state",
                                                "alpha2Code": "US",
                                                "isoCode": "US",
                                                "name": "United States of America (the)",
                                                "id": 223
                                            },
                                            "defaultSelected": false,
                                            "code": "TX",
                                            "name": "Texas",
                                            "id": 61,
                                            "categoryName": "state"
                                        }
                                    },
                                    "dateCreated": 1473436298227,
                                    "metric": false,
                                    "name": "View Only",
                                    "location": {},
                                    "revitLink": "",
                                    "id": 65,
                                    "weRatio": 1.75,
                                    "dateUpdated": 1674812048407,
                                    "costCenters": []
                                },
                                "dateUpdated": 1600271479847
                            },
                            "id": 5
                        }
                    ],
                    "name": "Master Plan - DO NOT DELETE",
                    "id": 1,
                    "dateUpdated": 1669296962620,
                    "forecasts": [
                        {
                            "categoryItem": {
                                "hexColor": "ffffcc",
                                "code": "Please do not modify/remove!",
                                "dateCreated": 1464968087173,
                                "depth": {
                                    "code": "co",
                                    "dateCreated": 1181403908747,
                                    "level": 0,
                                    "name": "Company",
                                    "id": 1,
                                    "category": {
                                        "code": "Please do not modify/remove!",
                                        "dateCreated": 1448999612493,
                                        "color": {},
                                        "name": "Default Category",
                                        "id": 1,
                                        "dateUpdated": 1465489481990
                                    }
                                },
                                "color": {},
                                "name": "North America",
                                "id": 199,
                                "category": {
                                    "code": "Please do not modify/remove!",
                                    "dateCreated": 1448999612493,
                                    "color": {},
                                    "name": "Default Category",
                                    "id": 1,
                                    "dateUpdated": 1465489481990
                                },
                                "dateUpdated": 1464988286367
                            },
                            "dateCreated": 1669296962617,
                            "percentageBased": false,
                            "categoryMemberCount": 50,
                            "id": 388,
                            "building": {
                                "meRatio": 2.5,
                                "code": "VIEW",
                                "address": {
                                    "country": {
                                        "defaultSelected": true,
                                        "subdivisionCategoryName": "state",
                                        "alpha2Code": "US",
                                        "isoCode": "US",
                                        "name": "United States of America (the)",
                                        "id": 223
                                    },
                                    "city": "Houston",
                                    "street": "901 Bagby St",
                                    "postalCode": "77002",
                                    "state": {
                                        "country": {
                                            "defaultSelected": true,
                                            "subdivisionCategoryName": "state",
                                            "alpha2Code": "US",
                                            "isoCode": "US",
                                            "name": "United States of America (the)",
                                            "id": 223
                                        },
                                        "defaultSelected": false,
                                        "code": "TX",
                                        "name": "Texas",
                                        "id": 61,
                                        "categoryName": "state"
                                    }
                                },
                                "dateCreated": 1473436298227,
                                "metric": false,
                                "name": "View Only",
                                "location": {},
                                "revitLink": "",
                                "id": 65,
                                "weRatio": 1.75,
                                "dateUpdated": 1674812048407,
                                "costCenters": []
                            },
                            "growthValue": 5
                        }
                    ]
          } 
          ...
  ]

Retrieve single Move Plan
GET/move/plans/{planId}

This API retrieves the details of single Move Plan from Stacking Diagram Page

Example URI

GET /move/plans/70
URI Parameters
HideShow
planId
number (required) Example: 70

Plan ID

Response  200
HideShow
Body
{
  "depth": {
    "code": "co",
    "dateCreated": 1181403908747,
    "level": 0,
    "name": "Company",
    "id": 1,
    "category": {
      "code": "Please do not modify/remove!",
      "dateCreated": 1448999612493,
      "color": {},
      "name": "Default Category",
      "id": 1,
      "dateUpdated": 1465489481990
    }
  },
  "center": {
    "name": "Move Center",
    "id": 77
  },
  "changes": [
    {
      "categoryItem": {
        "hexColor": "ffffcc",
        "code": "Please do not modify/remove!",
        "dateCreated": 1464968087173,
        "depth": {
          "code": "co",
          "dateCreated": 1181403908747,
          "level": 0,
          "name": "Company",
          "id": 1,
          "category": {
            "code": "Please do not modify/remove!",
            "dateCreated": 1448999612493,
            "color": {},
            "name": "Default Category",
            "id": 1,
            "dateUpdated": 1465489481990
          }
        },
        "color": {},
        "name": "North America",
        "id": 199,
        "category": {
          "code": "Please do not modify/remove!",
          "dateCreated": 1448999612493,
          "color": {},
          "name": "Default Category",
          "id": 1,
          "dateUpdated": 1465489481990
        },
        "dateUpdated": 1464988286367
      },
      "toFloor": {
        "area": 19662.6148,
        "meRatio": 1.75,
        "dateCreated": 1522704303613,
        "drawingAvailable": true,
        "interiorGross": 0,
        "name": "2",
        "leaseArea": 0,
        "id": 50,
        "building": {
          "meRatio": 2.5,
          "code": "VIEW",
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "901 Bagby St",
            "postalCode": "77002",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1473436298227,
          "metric": false,
          "name": "View Only",
          "location": {},
          "revitLink": "",
          "id": 65,
          "weRatio": 1.75,
          "dateUpdated": 1674812048407,
          "costCenters": []
        },
        "dateUpdated": 1600271522433
      },
      "fromFloor": {
        "area": 15338.417,
        "meRatio": 1.65,
        "dateCreated": 1473436298897,
        "drawingAvailable": true,
        "interiorGross": 0,
        "name": "1",
        "leaseArea": 0,
        "id": 41,
        "weRatio": 0.95,
        "building": {
          "meRatio": 2.5,
          "code": "VIEW",
          "address": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "city": "Houston",
            "street": "901 Bagby St",
            "postalCode": "77002",
            "state": {
              "country": {
                "defaultSelected": true,
                "subdivisionCategoryName": "state",
                "alpha2Code": "US",
                "isoCode": "US",
                "name": "United States of America (the)",
                "id": 223
              },
              "defaultSelected": false,
              "code": "TX",
              "name": "Texas",
              "id": 61,
              "categoryName": "state"
            }
          },
          "dateCreated": 1473436298227,
          "metric": false,
          "name": "View Only",
          "location": {},
          "revitLink": "",
          "id": 65,
          "weRatio": 1.75,
          "dateUpdated": 1674812048407,
          "costCenters": []
        },
        "dateUpdated": 1600271479847
      },
      "id": 5
    }
  ],
  "name": "Master Plan - DO NOT DELETE",
  "id": 1,
  "dateUpdated": 1669296962620,
  "forecasts": [
    {
      "categoryItem": {
        "hexColor": "ffffcc",
        "code": "Please do not modify/remove!",
        "dateCreated": 1464968087173,
        "depth": {
          "code": "co",
          "dateCreated": 1181403908747,
          "level": 0,
          "name": "Company",
          "id": 1,
          "category": {
            "code": "Please do not modify/remove!",
            "dateCreated": 1448999612493,
            "color": {},
            "name": "Default Category",
            "id": 1,
            "dateUpdated": 1465489481990
          }
        },
        "color": {},
        "name": "North America",
        "id": 199,
        "category": {
          "code": "Please do not modify/remove!",
          "dateCreated": 1448999612493,
          "color": {},
          "name": "Default Category",
          "id": 1,
          "dateUpdated": 1465489481990
        },
        "dateUpdated": 1464988286367
      },
      "dateCreated": 1669296962617,
      "percentageBased": false,
      "categoryMemberCount": 50,
      "id": 388,
      "building": {
        "meRatio": 2.5,
        "code": "VIEW",
        "address": {
          "country": {
            "defaultSelected": true,
            "subdivisionCategoryName": "state",
            "alpha2Code": "US",
            "isoCode": "US",
            "name": "United States of America (the)",
            "id": 223
          },
          "city": "Houston",
          "street": "901 Bagby St",
          "postalCode": "77002",
          "state": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "dateCreated": 1473436298227,
        "metric": false,
        "name": "View Only",
        "location": {},
        "revitLink": "",
        "id": 65,
        "weRatio": 1.75,
        "dateUpdated": 1674812048407,
        "costCenters": []
      },
      "growthValue": 5
    }
  ]
}

Create a Move Plan
POST/move/plans

The following attributes are required to create a Move Plan

Example URI

POST /move/plans
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "Rainforest SiteAdmin1234's Plan",
  "center": {
    "id": 77
  },
  "depth": {
    "id": 1
  },
  "changes": []
}
Response  201
HideShow
Body
{
  "dateCreated": 1677060275338,
  "depth": {
    "code": "co",
    "dateCreated": 1181403908747,
    "level": 0,
    "name": "Company",
    "id": 1,
    "category": {
      "code": "Please do not modify/remove!",
      "dateCreated": 1448999612493,
      "color": {},
      "name": "Default Category",
      "id": 1,
      "dateUpdated": 1465489481990
    }
  },
  "center": {
    "name": "Move Center",
    "id": 77
  },
  "changes": [],
  "name": "Rainforest SiteAdmin1234's Plan",
  "id": 288,
  "forecasts": []
}

Edit a Move Plan
PUT/move/plans/{id}

The following attributes are required to edit a Move Plan

Example URI

PUT /move/plans/287
URI Parameters
HideShow
id
string (required) Example: 287

ID of the Move Plan

  • Request (application/json)

    {
          "depth": {
              "id": 1
          },
          "center": {
              "id": 77
          },
          "changes": [],
          "name": "Rainforest SiteAdmin12345's Plan",
          "dateUpdated": 1677060099650,
          "forecasts": [
              {
                  "categoryItem": {
                      "hexColor": "ffffcc",
                      "depth": {
                          "code": "co",
                          "level": 0,
                          "name": "Company",
                          "id": 1
                      },
                      "code": "Please do not modify/remove!",
                      "name": "North America",
                      "id": 199,
                      "parents": []
                  },
                  "categoryMemberCount": 111,
                  "percentageBased": false,
                  "id": 791,
                  "building": {
                      "code": "DO NOT REMOVE",
                      "name": "Move",
                      "id": 43
                  },
                  "growthValue": 6
              }
          ]
      }
Response  201
HideShow
Body
{
  "dateCreated": 1677223651954,
  "depth": {
    "code": "co",
    "dateCreated": 1181403908747,
    "level": 0,
    "name": "Company",
    "id": 1,
    "category": {
      "code": "Please do not modify/remove!",
      "dateCreated": 1448999612493,
      "color": {},
      "name": "Default Category",
      "id": 1,
      "dateUpdated": 1465489481990
    }
  },
  "center": {
    "name": "Move Center",
    "id": 77
  },
  "changes": [],
  "name": "Rainforest SiteAdmin12345's Plan",
  "id": 291,
  "dateUpdated": 1677060099650,
  "forecasts": [
    {
      "categoryItem": {
        "hexColor": "ffffcc",
        "code": "Please do not modify/remove!",
        "dateCreated": 1464968087173,
        "depth": {
          "code": "co",
          "dateCreated": 1181403908747,
          "level": 0,
          "name": "Company",
          "id": 1,
          "category": {
            "code": "Please do not modify/remove!",
            "dateCreated": 1448999612493,
            "color": {},
            "name": "Default Category",
            "id": 1,
            "dateUpdated": 1465489481990
          }
        },
        "color": {},
        "name": "North America",
        "id": 199,
        "category": {
          "code": "Please do not modify/remove!",
          "dateCreated": 1448999612493,
          "color": {},
          "name": "Default Category",
          "id": 1,
          "dateUpdated": 1465489481990
        },
        "dateUpdated": 1464988286367
      },
      "dateCreated": 1677060099647,
      "percentageBased": false,
      "categoryMemberCount": 111,
      "id": 791,
      "building": {
        "code": "DO NOT REMOVE",
        "address": {
          "country": {
            "defaultSelected": true,
            "subdivisionCategoryName": "state",
            "alpha2Code": "US",
            "isoCode": "US",
            "name": "United States of America (the)",
            "id": 223
          },
          "city": "Houston",
          "street": "901 Bagby St",
          "postalCode": "77002",
          "state": {
            "country": {
              "defaultSelected": true,
              "subdivisionCategoryName": "state",
              "alpha2Code": "US",
              "isoCode": "US",
              "name": "United States of America (the)",
              "id": 223
            },
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "dateCreated": 1107466065320,
        "metric": false,
        "name": "Move",
        "leaseArea": 6000,
        "location": {},
        "revitLink": "https://a360.co/2IHVNN4",
        "id": 43,
        "dateUpdated": 1677197021700,
        "costCenters": []
      },
      "growthValue": 6
    }
  ]
}

Remove a Move Plan
DELETE/move/plans/{id}

Example URI

DELETE /move/plans/287
URI Parameters
HideShow
id
string (required) Example: 287

ID of the Move Plan

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Move Approvals

Move Approvals related resources of iOffice API

Retrieve Move Statuses
GET/approvals

This API retrieves the details of all Move Statuses from Move Approvals Page

Example URI

GET /approvals
Response  200
HideShow
Body
[
      {
          "approvalTemplate": {
              "notification": {
                  "dateCreated": 1663143588283,
                  "id": 27,
                  "dateUpdated": 1663584320782
              },
              "dateCreated": 1663143588280,
              "color": "#CCCCCC",
              "approvalType": "move",
              "center": {
                  "name": "Move Center",
                  "id": 77
              },
              "name": "Automation 123",
              "trigger": {
                  "dateCreated": 1663143588280,
                  "id": 53,
                  "matchingType": "ALL",
                  "dateUpdated": 1663584320782
              },
              "id": 53,
              "dateUpdated": 1663584320781
          },
          "currentStep": {
              "dateCreated": 1663157539846,
              "rule": "ALL",
              "id": 2
          },
          "notification": {
              "dateCreated": 1663157539860,
              "id": 1,
              "notificationUsers": []
          },
          "dateCreated": 1663157539853,
          "approvalType": "move",
          "center": {
              "name": "Move Center",
              "id": 77
          },
          "id": 2,
          "steps": [
              {
                  "dateCreated": 1663157539846,
                  "rule": "ALL",
                  "id": 2
              }
          ]
      }
      ...
  ]

Retrieve Move Templates
GET/approvals/templates

This API retrieves the details of all Move Templates from Move Approvals Page

Example URI

GET /approvals/templates
Response  200
HideShow
Body
[
    {
        "dateCreated": 1605767288423,
        "color": "#f1b2b2",
        "approvalType": "move",
        "center": {
            "name": "Move Center",
            "id": 77
        },
        "name": "Size > 10",
        "trigger": {
            "dateCreated": 1605767288410,
            "id": 1,
            "matchingType": "ALL"
        },
        "id": 1,
        "dateUpdated": 1677106870244
    },
    {
        "dateCreated": 1605767382263,
        "color": "#f1c4a7",
        "approvalType": "move",
        "center": {
            "name": "Move Center",
            "id": 77
        },
        "name": "Location = Move",
        "trigger": {
            "dateCreated": 1605767382260,
            "id": 2,
            "matchingType": "ALL"
        },
        "id": 2,
        "dateUpdated": 1677106870284
    }
    ...
  ]

Create a Move Template
POST/approvals/templates

The following attributes are required to create a Move Template

Example URI

POST /approvals/templates
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "color": "#72634c",
  "name": "demo",
  "steps": [
    {
      "groups": [
        {
          "approverGroup": {
            "groupType": "ANYADM",
            "center": {
              "name": "Move Center",
              "id": 77
            }
          }
        }
      ],
      "rule": "ANY",
      "groupType": "ANYADM"
    }
  ],
  "trigger": {
    "conditions": [
      {
        "property": "cost",
        "qualifier": "IS_GREATER_THAN",
        "value": "1"
      }
    ]
  },
  "notification": {
    "id": null
  },
  "center": {
    "id": 77
  },
  "sortOrder": 12,
  "approvalType": "move"
}

Edit a Move Template
PUT/approvals/templates

The following attributes are required to edit a Move Template

Example URI

PUT /approvals/templates
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 381,
  "name": "demo1"
}
Response  200
HideShow
Body
{
  "notification": {
    "dateCreated": 1677136321256,
    "id": 355
  },
  "dateCreated": 1677136321250,
  "color": "#72634c",
  "approvalType": "move",
  "center": {
    "name": "Move Center",
    "id": 77
  },
  "name": "demo1",
  "trigger": {
    "dateCreated": 1677136321240,
    "id": 381,
    "matchingType": "ALL"
  },
  "id": 381,
  "dateUpdated": 1677138128472
}

Remove a Move Template
DELETE/approvals/templates/{id}

Example URI

DELETE /approvals/templates/287
URI Parameters
HideShow
id
string (required) Example: 287

ID of the Move Template

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Mail

Mail-related resources of iOffice API

Mail

A single mail item object.

Retrieve a Single Mail Item
GET/mail/items/{id}

Example URI

GET /mail/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Edit a Mail Item
PUT/mail/items/{id}

To update a Mail Item send JSON with the Mail Item’s ID and updated value for one or more of the attributes.

Example URI

PUT /mail/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
"id": 1773,
"toUser": {
  "lastName": "Hill",
  "firstName": "Peggy",
  "id": 123,
  "email": "peggyhill@iofficecorp.com",
  "userName": "peggyhill",
  "name": "Peggy Hill",
  "userType": {
  ...
  }
},
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },           
}
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Remove a Mail Item
DELETE/mail/items/{id}

Example URI

DELETE /mail/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Deliver a Mail Item
PUT/mail/items/{id}/deliver

To deliver a single Mail Item send JSON with the required attributes.

Example URI

PUT /mail/items/id/deliver
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "itemType": "INTEROFFICE",
  "fromUser": {
    "id": 13
  },
  "toUser": {
    "id": 126
  },
  "id": 1906,
  "trackingNumber": "351987984"
}
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Deliver many Mail Items
PUT/mail/items/deliver

To deliver many Mail Items send JSON with the required attributes.

Example URI

PUT /mail/items/deliver
Request
HideShow
Headers
Content-Type: application/json
Body
[
        {
          "itemType": "INTEROFFICE",
          "fromUser": {
            "id": 13
          },
          "toUser": {
            "id": 126
          },
          "id": 1906,
          "trackingNumber": "351987984"
        },
        ...
    ]
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Checkout a Mail Item
PUT/mail/items/{id}/checkout

To checkout a single Mail Item send JSON with the required attributes.

Example URI

PUT /mail/items/id/checkout
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "itemType": "INTEROFFICE",
  "fromUser": {
    "id": 13
  },
  "toUser": {
    "id": 126
  },
  "id": 1906,
  "trackingNumber": "351987984"
}
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Pend a Mail Item
PUT/mail/items/{id}/pending

To pend a Mail Item send JSON with the required attributes.

Example URI

PUT /mail/items/id/pending
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "itemType": "INTEROFFICE",
  "fromUser": {
    "id": 13
  },
  "toUser": {
    "id": 126
  },
  "id": 1906,
  "trackingNumber": "351987984"
}
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Transfer a Mail Item
PUT/mail/items/{id}/transfer

To transfer a Mail Item send JSON with the required attributes.

Example URI

PUT /mail/items/id/transfer
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "itemType": "INTEROFFICE",
  "fromUser": {
    "id": 13
  },
  "toUser": {
    "id": 126
  },
  "id": 1906,
  "trackingNumber": "351987984"
}
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Add a Comment to a Mail Item
PUT/mail/items/{id}/addComment

To add a Comment to a Mail Item send JSON with the required attributes.

Example URI

PUT /mail/items/id/addComment
URI Parameters
HideShow
id
string (required) 

ID of the Mail Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
      "comment: "This is a comment!",
    }
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Mail Items Collection

Collection of all Mail Items.

List of all Mail Items
GET/mail/items/{?search,modifiedOrCreatedAfter}

Example URI

GET /mail/items/?search=351987984&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
search
number (optional) Example: 351987984

Number to search for mail item by id, trackingNumber, or originalTrackingNumber

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Items Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
]

Check In one or many Mail Items
POST/mail/items/checkin

To Check In one or many Mail Items send JSON with the required attributes.

Example URI

POST /mail/items/checkin
Request
HideShow
Headers
Content-Type: application/json
Body
[
        {
          "itemType": "OUTBOUND",
          "packageType": {
            "id": 1
          },
          "center": {
             "id": 62
            },
          "fromUser": {
            "id": 13
          },
          "toUser": {
            "id": 126
          },
          "trackingNumber": "351987984"
        },
        ...
    ]
Response  200
HideShow

JSON representation of the Mail Item Resource

Headers
Content-Type: application/json
Body
{
  "currentQueue": "OUT",
  "toUser": {
    "lastName": "Hill",
    "id": 1773,
    "email": "hankhill@iofficecorp.com",
    "userName": "hankhill",
    "firstName": "Hank",
    "name": "Hank Hill",
    "userType": {
      ...
    }
  },
  "itemType": "INBOUND",
  "route": {
    "forShipping": false,
    "dateCreated": 1389629005210,
    "name": "Propane Mail Stop",
    "id": 99,
    "dateUpdated": 1496351321157
  },
  "originalTrackingNumber": "1234567890",
  "courier": {
    "code": "OTHER",
    "dateCreated": 1064937226683,
    "name": "Other",
    "id": 5,
    "dateUpdated": 1066939059227
  },
  "deliveryType": "Other",
  "statuses": [
    {
      "center": {
        "name": "Propane Receiving",
        "id": 68
      },
      "id": 2426,
      "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43,
            },
          }
        },
      }
    },
    {
      "center": {
        "name": "Mail Center",
        "id": 68
      }
  ],
  "id": 1773,
  "packageType": {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  "trackingNumber": "1234567890",
  "deliverTo": {
    "lastName": "Hill",
     "firstName": "Peggy",
    "id": 123,
    "email": "peggyhill@iofficecorp.com",
    "userName": "peggyhill",
    "name": "Peggy Hill",
    "userType": {
      ...
    }
  }
}

Mail Item IDs

Retrieve all Mail Item IDs.

Retrieve Mail Item IDs
GET/mail/items/ids{?modifiedOrCreatedAfter}

Example URI

GET /mail/items/ids?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Item ID resource.

Headers
Content-Type: application/json
Body
[
  1234,
  5678,
  9012,
  3456,
  7890
]

Delivered Mail Items

Collection of all Delivered Mail Items.

Retrieve Delivered Mail Items
GET/mail/items/delivered{?modifiedOrCreatedAfter}

Example URI

GET /mail/items/delivered?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Delivered Mail Items Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Package Types

Collection of all Mail Package Types.

Retrieve Package Types
GET/mail/packageTypes{?modifiedOrCreatedAfter}

Example URI

GET /mail/packageTypes?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Package Types resource.

Headers
Content-Type: application/json
Body
[
  {
    "code": "env",
    "dateCreated": 1345679479550,
    "sortOrder": 3,
    "name": "Envelope",
    "id": 1,
    "dateUpdated": 1465239263837
  },
  {
    "code": "box",
    "dateCreated": 1345679479567,
    "sortOrder": 1,
    "name": "Box",
    "id": 2,
    "dateUpdated": 1465239263837
  },
  {
    "code": "bag",
    "dateCreated": 1345679479570,
    "sortOrder": 2,
    "name": "Bag",
    "id": 3,
    "dateUpdated": 1465239263843
  }
]

Mail Stops

Collection of all Mail Stops.

Retrieve Mail Stops
GET/mail/mailstops{?modifiedOrCreatedAfter}

Example URI

GET /mail/mailstops?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Stops resource.

Headers
Content-Type: application/json
Body
[
  {
    "name": "Goku Stop",
    "id": 123
  },
  {
    "name": "Vegeta Stop",
    "id": 456
  },
  {
    "name": "Piccolo Stop",
    "id": 789
  },
  {
    "name": "Master Roshi Stop",
    "id": 012
  },
  {
    "name": "Dragon Ball Stop",
    "id": 345
  }
]

Mail Status Types

Collection of all Mail Status Types.

Retrieve Mail Status Types
GET/mail/types{?modifiedOrCreatedAfter}

Example URI

GET /mail/types?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Routes resource.

Headers
Content-Type: application/json
Body
[
  {
    "forShipping": false,
    "dateCreated": 1106077148680,
    "name": "DBZ Mail Center",
    "id": 9000,
    "dateUpdated": 1465497845000
  },
  {
    "forShipping": true,
    "dateCreated": 1136928941950,
    "name": "Sailor Moon Mail Center",
    "id": 5,
    "dateUpdated": 1465497863110
  },
  {
    "forShipping": false,
    "dateCreated": 1374783404423,
    "name": "Ranma 1/2 Mail Center",
    "id": 999,
    "dateUpdated": 1465497836000
  }
]

Mail Routes

Collection of all Mail Routes.

Retrieve Mail Routes
GET/mail/routes{?modifiedOrCreatedAfter}

Example URI

GET /mail/routes?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Routes resource.

Headers
Content-Type: application/json
Body
[
  {
    "forShipping": false,
    "dateCreated": 1106077148680,
    "name": "DBZ Mail Center",
    "id": 9000,
    "dateUpdated": 1465497845000
  },
  {
    "forShipping": true,
    "dateCreated": 1136928941950,
    "name": "Sailor Moon Mail Center",
    "id": 5,
    "dateUpdated": 1465497863110
  },
  {
    "forShipping": false,
    "dateCreated": 1374783404423,
    "name": "Ranma 1/2 Mail Center",
    "id": 999,
    "dateUpdated": 1465497836000
  }
]

Mail Locations

Collection of all Mail Locations.

Retrieve Mail Locations
GET/mail/locations{?modifiedOrCreatedAfter}

Example URI

GET /mail/locations?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Locations resource.

Headers
Content-Type: application/json
Body
[
  {
    "dateCreated": 1449102051820,
    "sortOrder": 1,
    "name": "Rack 1",
    "id": 1,
    "dateUpdated": 1501188860653
  },
  {
    "dateCreated": 1449102051820,
    "sortOrder": 2,
    "name": "Rack 2",
    "id": 2,
    "dateUpdated": 1501188860657
  },
  {
    "dateCreated": 1483036976673,
    "sortOrder": 3,
    "name": "Rack 3",
    "id": 3,
    "dateUpdated": 1501188860660
  }
]

Mail Alerts

Collection of all Mail Alerts.

Retrieve Mail Alerts
GET/mail/alerts{?modifiedOrCreatedAfter}

Example URI

GET /mail/alerts?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Alerts resource.

Headers
Content-Type: application/json
Body
[
  {
    "multipleAlerts": true,
    "notes": "This is a Note!",
    "id": 1,
    "enteredBy": {
        "lastName": "Hill",
        "firstName": "Bobby",
        "phone": "123-456-7899",
        "name": "Bobby Hill",
        "userType": {
          ...
        }                    
        "extension": "123",
        "company": "Strickland Propane",
        "id": 1,
        "email": "bobbyhill@iofficecorp.com",
        "employeeId": "99",
        "userName": "bobbyhill",
        "mailStop": {
          "name": "Bobby's Room Mail Stop",
          "id": 139
        },                    
        "room": {
          "type": {
            ...
          },
          "name": "803",
          "id": 160,
          "mailStop": {
            "name": "Bobby's Room Mail Stop",
            "id": 139
          },
          "floor": {
            "name": "08",
            "id": 2,
            "building": {
              "address": {
                "country": {
                  "defaultSelected": true,
                  "subdivisionCategoryName": "state",
                  "alpha2Code": "US",
                  "isoCode": "US",
                  "name": "United States of America (the)",
                  "id": 223
                },
                "city": "Arlen",
                "street": "1598 Strickland Way",
                "postalCode": "77539",
                "state": {
                  "country": {
                    "defaultSelected": true,
                    "subdivisionCategoryName": "state",
                    "alpha2Code": "US",
                    "isoCode": "US",
                    "name": "United States of America (the)",
                    "id": 223
                  },
                  "defaultSelected": false,
                  "code": "TX",
                  "name": "Texas",
                  "id": 61,
                  "categoryName": "state"
                }
              },
              "code": "PRPN",
              "name": "Lone Star Tower",
              "location": {},
              "id": 43
            },
          },
        },
     },
   },       
]

Mail Leaderboards for Deliveries

Collection of Leaderboards for Mail Deliveries.

Retrieve Leaderboards for Mail Deliveries
GET/stats/leaderboards/deliveries{?modifiedOrCreatedAfter}

Example URI

GET /stats/leaderboards/deliveries?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Leaderboards for Deliveries resource.

Headers
Content-Type: application/json
Body
[
    {
        "count": 99,
        "user": {
            "lastName": "Hill",
            "firstName": "Bobby",
            "phone": "123-456-7899",
            "name": "Bobby Hill",
            "userType": {
              ...
            }                    
            "extension": "123",
            "company": "Strickland Propane",
            "id": 1,
            "email": "bobbyhill@iofficecorp.com",
            "employeeId": "99",
            "userName": "bobbyhill",
            "mailStop": {
              "name": "Bobby's Room Mail Stop",
              "id": 139
            },                    
            "room": {
              "type": {
                ...
              },
              "name": "803",
              "id": 160,
              "mailStop": {
                "name": "Bobby's Room Mail Stop",
                "id": 139
              },
              "floor": {
                "name": "08",
                "id": 2,
                "building": {
                  "address": {
                    "country": {
                      "defaultSelected": true,
                      "subdivisionCategoryName": "state",
                      "alpha2Code": "US",
                      "isoCode": "US",
                      "name": "United States of America (the)",
                      "id": 223
                    },
                    "city": "Arlen",
                    "street": "1598 Strickland Way",
                    "postalCode": "77539",
                    "state": {
                      "country": {
                        "defaultSelected": true,
                        "subdivisionCategoryName": "state",
                        "alpha2Code": "US",
                        "isoCode": "US",
                        "name": "United States of America (the)",
                        "id": 223
                      },
                      "defaultSelected": false,
                      "code": "TX",
                      "name": "Texas",
                      "id": 61,
                      "categoryName": "state"
                    }
                  },
                  "code": "PRPN",
                  "name": "Lone Star Tower",
                  "location": {},
                  "id": 43,
                },
              },
            },
        },          
     },
     ...                          
]

Mail Leaderboards for Check-Ins

Collection of Leaderboards for Check-Ins.

Retrieve Leaderboards for Mail Check-Ins
GET/stats/leaderboards/check-ins{?modifiedOrCreatedAfter}

Example URI

GET /stats/leaderboards/check-ins?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Mail Leaderboards for Check-Ins resource.

Headers
Content-Type: application/json
Body
[
    {
        "count": 67,
        "user": {
            "lastName": "Hill",
            "firstName": "Bobby",
            "phone": "123-456-7899",
            "name": "Bobby Hill",
            "userType": {
              ...
            }                    
            "extension": "123",
            "company": "Strickland Propane",
            "id": 1,
            "email": "bobbyhill@iofficecorp.com",
            "employeeId": "99",
            "userName": "bobbyhill",
            "mailStop": {
              "name": "Bobby's Room Mail Stop",
              "id": 139
            },                    
            "room": {
              "type": {
                ...
              },
              "name": "803",
              "id": 160,
              "mailStop": {
                "name": "Bobby's Room Mail Stop",
                "id": 139
              },
              "floor": {
                "name": "08",
                "id": 2,
                "building": {
                  "address": {
                    "country": {
                      "defaultSelected": true,
                      "subdivisionCategoryName": "state",
                      "alpha2Code": "US",
                      "isoCode": "US",
                      "name": "United States of America (the)",
                      "id": 223
                    },
                    "city": "Arlen",
                    "street": "1598 Strickland Way",
                    "postalCode": "77539",
                    "state": {
                      "country": {
                        "defaultSelected": true,
                        "subdivisionCategoryName": "state",
                        "alpha2Code": "US",
                        "isoCode": "US",
                        "name": "United States of America (the)",
                        "id": 223
                      },
                      "defaultSelected": false,
                      "code": "TX",
                      "name": "Texas",
                      "id": 61,
                      "categoryName": "state"
                    }
                  },
                  "code": "PRPN",
                  "name": "Lone Star Tower",
                  "location": {},
                  "id": 43,
                },
              },
            },
        },          
     },
     ...                          
]

Contact

Contact-related resources of iOffice API

Contact

A single contact object.

Retrieve a Single Contact
GET/contacts/{id}

Example URI

GET /contacts/id
URI Parameters
HideShow
id
string (required) 

ID of the Contact

Response  200
HideShow

JSON representation of the Contact Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Edit a Contact
PUT/contacts/{id}

To update a Contact send JSON with the Contact’s ID and updated value for one or more of the attributes.

Example URI

PUT /contacts/id
URI Parameters
HideShow
id
string (required) 

ID of the Contact

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "attributeName": "value"
}
Response  200
HideShow

JSON representation of the Contact Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Remove a Contact
DELETE/contacts/{id}

Example URI

DELETE /contacts/id
URI Parameters
HideShow
id
string (required) 

ID of the Contact

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Contact Collection

Collection of all Contacts.

List of all Contacts
GET/contacts{?modifiedOrCreatedAfter}

Example URI

GET /contacts?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Contact Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Contact
POST/contacts

To create a Contact send JSON with the values the new contact should have.

Example URI

POST /contacts
Response  201
HideShow

JSON representation of the Contact Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Building

Building-related resources of iOffice API

Building

A single building object.

Retrieve a Single Building
GET/buildings/{id}

Example URI

GET /buildings/id
URI Parameters
HideShow
id
string (required) 

ID of the Building

Response  200
HideShow

JSON representation of the Building Resource

Headers
Content-Type: application/json
Body
{
    "id": 43,
    "address": {...},
    "name": "Mystery Inc.",
    "code": "mystery"
}

Edit a Building
PUT/buildings/{id}

To update a Building send JSON with the Building’s ID and updated value for one or more of the attributes.

Example URI

PUT /buildings/id
URI Parameters
HideShow
id
string (required) 

ID of the Building

  • Request (application/json)

    {
      "parking": false,
      "address": {
          "country": {
              "name": "United States of America (the)",
              "id": 223
          },
          "state": {
              "code": "AL",
              "name": "Alabama",
              "id": 14
          }
      },
      "city": "texas",
      "metric": false,
      "centers": [],
      "name": "TestBuilding4",
      "agreements": [],
      "id": 2196,
      "fields": [],
      "costCenters": []
    }
Response  200
HideShow
Body
{
  "address": {
    "country": {
      "defaultSelected": true,
      "subdivisionCategoryName": "state",
      "alpha2Code": "US",
      "isoCode": "US",
      "name": "United States of America (the)",
      "id": 223
    },
    "city": "texas",
    "state": {
      "country": {
        "defaultSelected": true,
        "subdivisionCategoryName": "state",
        "alpha2Code": "US",
        "isoCode": "US",
        "name": "United States of America (the)",
        "id": 223
      },
      "defaultSelected": false,
      "code": "AL",
      "name": "Alabama",
      "id": 14,
      "categoryName": "state"
    }
  },
  "dateCreated": 1676557102793,
  "metric": false,
  "name": "TestBuilding4",
  "location": {},
  "id": 2196,
  "dateUpdated": 1676621010388,
  "costCenters": []
}

Remove a Building
DELETE/buildings/{id}

Example URI

DELETE /buildings/id
URI Parameters
HideShow
id
string (required) 

ID of the Building

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Building Collection

Collection of all Buildings.

List of all Buildings
GET/buildings/{?includeReservable,includeNonReservable,locationSearch,nearLatitude,nearLongitude,modifiedOrCreatedAfter,module}

Example URI

GET /buildings/?includeReservable=true&includeNonReservable=false&locationSearch=houston tx&nearLatitude=29.75613&nearLongitude=-95.39425&modifiedOrCreatedAfter=1549319834&module=maintenance
URI Parameters
HideShow
includeReservable
boolean (optional) Example: true

If true, query will include buildings with reservable rooms

includeNonReservable
boolean (optional) Example: false

If true, query will include buildings with non-reservable rooms

locationSearch
string (optional) Example: houston tx

Will do a location lookup based on the search string.

nearLatitude
number (optional) Example: 29.75613

Latitude to base search on (50 mile radius)

nearLongitude
number (optional) Example: -95.39425

Longitude to base search on (50 mile radius)

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

module
string (optional) Example: maintenance

selected Module in which buildings displayed.

Response  200
HideShow

JSON representation of the Building Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Building
POST/buildings/

The following attribute is required to create a Building: name.

Example URI

POST /buildings/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "testbuilding1234",
  "city": "testcity1",
  "address": {
    "country": {
      "id": 223
    }
  },
  "state": {
    "id": 14
  }
}
Response  201
HideShow
Body
{
  "address": {
    "country": {
      "defaultSelected": true,
      "subdivisionCategoryName": "state",
      "alpha2Code": "US",
      "isoCode": "US",
      "name": "United States of America (the)",
      "id": 223
    },
    "state": {
      "country": {
        "defaultSelected": true,
        "subdivisionCategoryName": "state",
        "alpha2Code": "US",
        "isoCode": "US",
        "name": "United States of America (the)",
        "id": 223
      },
      "defaultSelected": false,
      "code": "AL",
      "name": "Alabama",
      "id": 14,
      "categoryName": "state"
    }
  },
  "dateCreated": 1675853636984,
  "metric": false,
  "name": "testbuilding1234",
  "location": {},
  "id": 2121,
  "costCenters": []
}

Country

Country-related resources of iOffice API

Country

A single country object.

Retrieve a Single Country
GET/countries/{id}

Example URI

GET /countries/id
URI Parameters
HideShow
id
string (required) 

ID of the Country

Response  200
HideShow

JSON representation of the Country Resource

Headers
Content-Type: application/json
Body
{
  "id": 223,
  "defaultSelected": true,
  "name": "United States"
}

Edit a Country
PUT/countries/{id}

Countries cannot be modified.

Example URI

PUT /countries/id
URI Parameters
HideShow
id
string (required) 

ID of the Country

Response  500

Remove a Country
DELETE/countries/{id}

Example URI

DELETE /countries/id
URI Parameters
HideShow
id
string (required) 

ID of the Country

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Country Collection

Collection of all Countries.

List of all Countries
GET/countries{?modifiedOrCreatedAfter}

Example URI

GET /countries?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Country Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Country
POST/countries

Countries cannot be modified.

Example URI

POST /countries
Response  500
HideShow

JSON representation of the Country Resource

Headers
Content-Type: application/json
Body
{
  "id": 223,
  "defaultSelected": true,
  "name": "United States"
}

Floor

Floor-related resources of iOffice API

Floor

A single floor object.

Retrieve a Single Floor
GET/floors/{id}

Example URI

GET /floors/id
URI Parameters
HideShow
id
string (required) 

ID of the Floor

Response  200
HideShow

JSON representation of the Floor Resource

Headers
Content-Type: application/json
Body
{
    "id": 5,
    "building": {...},
    "area": 2000,
    "name": "1st Floor"
}

Edit a Floor
PUT/floors/{id}

To update a Floor send JSON with the Floor’s ID and updated value for one or more of the attributes.

Example URI

PUT /floors/id
URI Parameters
HideShow
id
string (required) 

ID of the Floor

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 5,
  "name": "2nd Floor"
}
Response  200
HideShow

JSON representation of the Floor Resource

Headers
Content-Type: application/json
Body
{
    "id": 5,
    "building": {...},
    "area": 2000,
    "name": "1st Floor"
}

Remove a Floor
DELETE/floors/{id}

Example URI

DELETE /floors/id
URI Parameters
HideShow
id
string (required) 

ID of the Floor

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Floor Collection

Collection of all Floors.

List of all Floors
GET/floors/{?buildingId,modifiedOrCreatedAfter}

Example URI

GET /floors/?buildingId=3&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
buildingId
number (optional) Example: 3

Id of building to base query

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Floor Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Floor
POST/floors/{?buildingId,modifiedOrCreatedAfter}

The following attributes are required to create a Floor: name and building.

Example URI

POST /floors/?buildingId=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
buildingId
string (optional) 

Id building to query from

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "3rd Floor",
  "building": {
    "id": 45
  }
}
Response  201
HideShow

JSON representation of the Floor Resource

Headers
Content-Type: application/json
Body
{
    "id": 5,
    "building": {...},
    "area": 2000,
    "name": "1st Floor"
}

Annotations

Retrieve Annotations
GET/floors/annotation

Example URI

GET /floors/annotation
URI Parameters
HideShow
floorId
number (required) Example: 12

Id of Floor

  • limit (optional, number, 2)
selector
string (required) Example: type%2Ctext%2Clayer%2Cfxg
Response  200
HideShow
Body
[
  {
    "fxg": "<s:Group height=\"409\" width=\"892\" x=\"1546\" y=\"-456\">\n        <s:RichText height=\"409\" width=\"892\" fontFamily=\"Helvetica\" fontSize=\"32\"\n          fontStyle=\"normal\" fontWeight=\"normal\" textAlign=\"center\" textDecoration=\"none\"\n          color=\"0x000000\" backgroundAlpha=\"1.00\" backgroundColor=\"0xFFFFFF\" borderAlpha=\"1.00\"\n          borderColor=\"0x000000\" paddingLeft=\"0\">\n        </s:RichText>\n      </s:Group>",
    "name": "Text Test",
    "text": "Testing Text",
    "id": 1183,
    "type": "RichText",
    "layer": {
      "name": "sammy test",
      "id": 38
    }
  },
  {
    "fxg": "<s:Group height=\"257.0612244897819\" width=\"257.0612244897819\" x=\"1024.416326527784\" y=\"-495.0102040821838\">\n        <s:Path data=\"M0,0 L8.204081632543648,224.2448979592304 L207.83673469376663,257.0612244897819 L216.0408163265015,92.97959183682741 L139.46938775513945,57.42857142856934 L125.79591836737882,131.26530612241027 L62.897959183596186,131.26530612241027 L43.755102040799784,5.469387755037019 L0,0\" height=\"257.0612244897819\" width=\"216.0408163265015\" x=\"0\" y=\"0\">\n          <s:fill>\n            <s:SolidColor alpha=\"0\" color=\"#FFFFFF\"/>\n          </s:fill>\n          <s:stroke>\n            <s:SolidColorStroke alpha=\"1\" caps=\"round\" color=\"#000000\" joints=\"round\" weight=\"2\"/>\n          </s:stroke>\n        </s:Path>\n      </s:Group>",
    "name": "Polygon Test",
    "id": 1184,
    "layer": {
      "name": "",
      "id": 49
    }
  }
]

Create Annotation
POST/floors/annotation

Creates different types of annotations i.e Shape, Polygon and Text. This categorization is done using “type” parameter in the request body where:

  • type = “Shape” -> To Create Shape Annotation

  • type = null -> To Create Polygon Annotation

  • type = “RichText” -> To Create Text Annotation

Also, fxg parameter in request body will be different based on the type of annotation (i.e Shape, Polygon or Text) being created.

Example URI

POST /floors/annotation
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "",
  "type":{type},
  "layer": {
    "id": 38
  },
  "fxg": "<s:Group height=\"100\" width=\"100\" x=\"1965.5087425933582\" y=\"-363.596060628774\">\n        <s:Shape iconId=\"m_rounded:rounded-square\" alpha=\"1\" height=\"100\" width=\"100\" x=\"0\" y=\"0\"></s:Shape>\n      </s:Group>",
  "model": {
    "name": "SquareShape"
  }
}
Response  201
HideShow
Body
{
  "dateCreated": 1671014536856,
  "name": "SquareShape",
  "id": 1197
}

Update Annotation
POST/floors/annotation

Note: Here, same request type(POST) along with same Endpoint of “Create Annotation” are being used for “Update Annotation”, with below minor differences:

  • “id” parameter is being added in the request main body which must have value as: {id of the annotation which is being updated}.

  • “fxg” parameter in request body will be different, based on the type of annotation (i.e Shape, Polygon or Text) being edited.

  • The response code of this POST call is 200, howevere in “Create Annotation” it is 201.

Example URI

POST /floors/annotation
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 1194,
  "fxg": "<s:Group height=\"100\" width=\"100\" x=\"1196.6703241181406\" y=\"60.38390554125603\">\n        <s:Shape iconId=\"external-regular-kawalan-studio:external-square-shape-regular-kawalan-studio\" alpha=\"1\" height=\"100\" width=\"100\" x=\"0\" y=\"0\"></s:Shape>\n      </s:Group>",
  "layer": {
    "id": 38
  },
  "model": {
    "name": "NewShapess",
    "width": 100,
    "height": 100,
    "x": 0,
    "y": 0
  }
}
Response  200
HideShow
Body
{
  "name": "NewShapess",
  "id": 1194,
  "dateUpdated": 1671094453187
}

Delete Annotation
DELETE/floors/annotation/{id}

Example URI

DELETE /floors/annotation/1197
URI Parameters
HideShow
id
number (required) Example: 1197

ID of the Shape/Polygon/Text

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Layers

Retrieve Layers
GET/floors/annotation/layers

Example URI

GET /floors/annotation/layers
URI Parameters
HideShow
floorId
number (required) Example: 12

Id of Floor

  • limit (optional, number, 2)
selector
string (required) Example: drawing,availability,enteredBy
Response  200
HideShow
Body
[
  {
    "drawing": {
      "name": "LEVEL 20",
      "id": 39
    },
    "name": "sammy test",
    "availability": "EVERYONE",
    "id": 38,
    "enteredBy": {
      "name": "asdf0 Service",
      "id": 1
    }
  },
  {
    "drawing": {
      "name": "LEVEL 20",
      "id": 39
    },
    "name": "",
    "availability": "EVERYONE",
    "id": 49,
    "enteredBy": {
      "name": "asdf0 Service",
      "id": 1
    }
  }
]

Create Layer
POST/floors/annotation/layers

Example URI

POST /floors/annotation/layers
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "NewLayer",
  "availability": "EVERYONE",
  "drawing": {
    "id": 39
  }
}
Response  201
HideShow
Body
{
  "dateCreated": 1671095761328,
  "name": "NewLayer",
  "id": 62
}

Update Layer
POST/floors/annotation/layers

Note: Here, same request type(POST) along with same Endpoint of “Create Layer” are being used for “Update Layer” with below minor differences:

  • In the request body “id” parameter is being added which must have value as: {id of the layer which is being updated}.

  • The response code of this POST call is 200, howevere in “Create Layer” it is 201.

Example URI

POST /floors/annotation/layers
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 62,
  "name": "NewLayerss",
  "availability": "EVERYONE"
}
Response  200
HideShow
Body
{
  "name": "NewLayerss",
  "id": 62,
  "dateUpdated": 1671095766360
}

Delete Layer
DELETE/floors/annotation/layers/{id}

Example URI

DELETE /floors/annotation/layers/58
URI Parameters
HideShow
id
number (required) Example: 58

Id of the Layer

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Markers

Place Markers
PUT/floors/markers

Example URI

PUT /floors/markers
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 429,
  "position": {
    "x": 1232.6363636365732,
    "y": 901.3686868689745
  }
}
Response  200
HideShow
Body
{
  "dateCreated": 1572466544443,
  "id": 429,
  "dateUpdated": 1670871013942
}

Edit Markers
PUT/floors/markers/types/

Example URI

PUT /floors/markers/types/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "hexColor": "BEA5FA",
  "dateCreated": 1559926966786,
  "name": "WAYFINDING",
  "description": "",
  "iconUid": "ios7:pioneer-wagon",
  "markerTypeGroup": {
    "id": 18
  },
  "id": 19,
  "dateUpdated": 1582233086343
}
Response  200
HideShow
Body
{
  "hexColor": "BEA5FA",
  "dateCreated": 1559926966786,
  "name": "WAYFINDING",
  "description": "",
  "iconUid": "ios7:pioneer-wagon",
  "markerTypeGroup": {
    "code": "$@IOFFICE_DEVICES@$",
    "dateCreated": 1559926966740,
    "name": "iOFFICE Kiosk Devices",
    "id": 18
  },
  "id": 19,
  "dateUpdated": 1670871301387
}

Marker Groups

Create Marker Group
POST/floors/markers/groups

Example URI

POST /floors/markers/groups
URI Parameters
HideShow
selector
string (required) Example: availability%2Ccode%2Cdescription%2CvisibleByDefault
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "visibleByDefault": false,
  "availability": "EVERYONE",
  "name": "NewMarkerGroup",
  "description": ""
}
Response  201
HideShow
Body
{
  "code": "NEWMARKERGROUP",
  "visibleByDefault": false,
  "name": "NewMarkerGroup",
  "description": "",
  "availability": "EVERYONE",
  "id": 88
}

Update Marker Group
POST/floors/markers/groups

Note: Here, Same request type(POST) along with same Endpoint of “Create Marker Group” are being used for “Update Marker Group” with below minor difference:

  • “id” parameter is being added in the request body which must have values as:{id of the Marker Group which is being updated}.

  • “code” parameter is being added in the request body which must have values as:{code of the Marker Group which is being updated}.

  • The response code of this POST call is 200, howevere in “Create Marker Group” it is 201.

Example URI

POST /floors/markers/groups
URI Parameters
HideShow
selector
string (required) Example: availability%2Ccode%2Cdescription%2CvisibleByDefault
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "code": "NEWMARKERGROUP",
  "visibleByDefault": false,
  "name": "NewMarkerGroups",
  "description": "",
  "availability": "EVERYONE",
  "id": 88
}
Response  200
HideShow
Body
{
  "code": "NEWMARKERGROUPS",
  "visibleByDefault": false,
  "name": "NewMarkerGroups",
  "description": "",
  "availability": "EVERYONE",
  "id": 88
}

Delete Marker Group
DELETE/floors/markers/groups/{id}

Example URI

DELETE /floors/markers/groups/88
URI Parameters
HideShow
id
number (required) Example: 88

Id of the Marker Group

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Room

Room-related resources of iOffice API

Note: The term “room” has been amended to “space”; all references to a “room” or “rooms” will now be referred to as a “space” or “spaces”. This change does not affect current endpoints.

Room

A single room object.

Retrieve a Single Room
GET/rooms/{id}

Example URI

GET /rooms/id
URI Parameters
HideShow
id
string (required) 

ID of the Room

Response  200
HideShow

JSON representation of the Room Resource

Headers
Content-Type: application/json
Body
{
    "id": 52927,
    "floor": {...},
    "reservable": true,
    "name": "010211"
}

Edit a Room
PUT/rooms/{id}

To update a Room send JSON with the Room’s ID and updated value for one or more of the attributes.

Example URI

PUT /rooms/id
URI Parameters
HideShow
id
string (required) 

ID of the Room

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "type": {
    "id": 55
  }
}
Response  200
HideShow

JSON representation of the Room Resource

Headers
Content-Type: application/json
Body
{
    "id": 52927,
    "floor": {...},
    "reservable": true,
    "name": "010211"
}

Remove a Room
DELETE/rooms/{id}

Example URI

DELETE /rooms/id
URI Parameters
HideShow
id
string (required) 

ID of the Room

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Room Collection

Collection of all Rooms.

List of all Rooms
GET/rooms/{?includeReservable,includeNonReservable,locationSearch,includeOccupiable,includeNonOccupiable,nearLatitude,nearLongitude,startDate,endDate,numberOfPeople,includeParking,buildingId,floorId,type,modifiedOrCreatedAfter}

Note: floorId and buildingId may be used in tandem but floorId will always take preference (i.e. a mismatched buildingId/floorId will not result in an error).

Example URI

GET /rooms/?includeReservable=true&includeNonReservable=false&locationSearch=houston tx&includeOccupiable=true&includeNonOccupiable=false&nearLatitude=29.75613&nearLongitude=-95.39425&startDate=1404410211910&endDate=1404421051661&numberOfPeople=6&includeParking=true&buildingId=44&floorId=3443&type=65 or 65,32,79&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
includeReservable
boolean (optional) Example: true

If true, query will include reservable rooms

includeNonReservable
boolean (optional) Example: false

If true, query will include non-reservable rooms

includeOccupiable
boolean (optional) Default: true Example: true

If true, query will include occupiable rooms (requires type parameter to be set)

includeNonOccupiable
boolean (optional) Default: true Example: false

If true, query will include non-occupiable rooms (requires type parameter to be set)

locationSearch
string (optional) Example: houston tx

Will do a location lookup based on the search string.

room
string (optional) Example: workstation

Will do a filter based on room name, room description, room type, reservation description

nearLatitude
number (optional) Example: 29.75613

Latitude to base search on (50 mile radius)

nearLongitude
number (optional) Example: -95.39425

Longitude to base search on (50 mile radius)

startDate
number (optional) Example: 1404410211910

Epoch time (milliseconds) of room availability start date

endDate
number (optional) Example: 1404421051661

Epoch time (milliseconds) of room availability end date

numberOfPeople
number (optional) Example: 6

Number to search for room by maximum occupancy

includeParking
boolean (optional) Example: true

If true, query will include rooms with parking spaces

buildingId
number (optional) Example: 44

Id of building to search in

floorId
number (optional) Example: 3443

Id of floor to search on

type
number (optional) Example: 65 or 65,32,79

Id of room type to search for (can accept a comma delimited series of Ids)

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Room Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Room
POST/rooms/

The following attributes are required to create a Room: name, floor, and type.

Example URI

POST /rooms/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "room 101",
  "floor": {
    "id": 16
  },
  "type": {
    "id": 44
  }
}
Response  201
HideShow

JSON representation of the Room Resource

Headers
Content-Type: application/json
Body
{
    "id": 52927,
    "floor": {...},
    "reservable": true,
    "name": "010211"
}

Room Types

Collection of all Room Types.

List of all Room Types
GET/rooms/types/{?includeReservable,includeNonReservable,includeOccupiable,includeNonOccupiable,includeParking,modifiedOrCreatedAfter,limit,orderBy,selector}

Example URI

GET /rooms/types/?includeReservable=true&includeNonReservable=false&includeOccupiable=true&includeNonOccupiable=false&includeParking=false&modifiedOrCreatedAfter=1549319834&limit=206&orderBy=sortOrder&selector=rules
URI Parameters
HideShow
includeReservable
boolean (optional) Example: true

If true, query will include reservable room types

includeNonReservable
boolean (optional) Example: false

If true, query will include non-reservable room types

includeOccupiable
boolean (optional) Example: true

If true, query will include occupiable room types

includeNonOccupiable
boolean (optional) Example: false

If true, query will include non-occupiable room types

includeParking
boolean (optional) Example: false

If true, query will include parking room types

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection

limit
number (optional) Example: 206

Reservations List limit to query from

orderBy
string (optional) Example: sortOrder

Sort order for records

selector
string (required) Example: rules

Selector ID

Response  200
HideShow

JSON representation of the Room Types resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        "name":"Office",
        "sortOrder":5
    }
]

Room Types Count
GET/rooms/types/count

This API returns count of room types

Example URI

GET /rooms/types/count
Response  200
HideShow
Body
{
  "count": 206
}

Asset

Asset-related resources of iOffice API

Asset

A single asset object.

Retrieve a Single Asset
GET/assets/{id}

Example URI

GET /assets/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset

Response  200
HideShow

JSON representation of the Asset Resource Note: An asset can be assigned to either a room or an owner. If assigned to an owner then the json object will have an owner property and not a room property and visa versa.

Headers
Content-Type: application/json
Body
{
    "id": 11,
    "model": {...},
    "managed": false,
    "boxLength": "STRING",
    "titleLocation": "STRING",
    "name": "Computer",
    "dateCreated": 1382994855640,
    "active": "BOOLEAN",
    "room": {...},
    "owner": {...}
    "dateUpdated": 1382994855640
}

Edit a Asset
PUT/assets/{id}

To update an Asset send JSON with the Asset’s ID and updated value for one or more of the attributes.

Example URI

PUT /assets/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 11,
  "printerName": "NEW PRINTER TEST NAME"
}
Response  200
HideShow

JSON representation of the Asset Resource Note: An asset can be assigned to either a room or an owner. If assigned to an owner then the json object will have an owner property and not a room property and visa versa.

Headers
Content-Type: application/json
Body
{
    "id": 11,
    "model": {...},
    "managed": false,
    "boxLength": "STRING",
    "titleLocation": "STRING",
    "name": "Computer",
    "dateCreated": 1382994855640,
    "active": "BOOLEAN",
    "room": {...},
    "owner": {...}
    "dateUpdated": 1382994855640
}

Remove an Asset
DELETE/assets/{id}

Example URI

DELETE /assets/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Asset Collection

Collection of all Assets.

List of all Assets
GET/assets/{?search,searchSerialNumber,typeId,buildingId,floorId,roomId,owner,modifiedOrCreatedAfter}

Example URI

GET /assets/?search=apple&searchSerialNumber=11111111&typeId=&buildingId=&floorId=&roomId=&owner=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
search
string (optional) Example: apple

String to search for asset by model name, owner name, room name, localUID, or serialNumber

searchSerialNumber
string (optional) Example: 11111111

Search by serial number only

typeId
number (optional) 

Id of the type to query from

buildingId
number (optional) 

Id of the building to query from

floorId
number (optional) 

Id of the floor to query from

roomId
number (optional) 

Id of the room to query from

owner
number (optional) 

Id of the owner to query from

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection

Response  200
HideShow

JSON representation of the Asset Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":11
        ...
    },
    {
        "id":12
        ...
    },
    {
        "id":13
        ...
    }
]

Create a Asset
POST/assets/

NOTE: An Asset Model id is required for creating an Asset.

Example URI

POST /assets/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "model": {
    "id": 454
  }
}
Response  201
HideShow

JSON representation of the Asset Resource Note: An asset can be assigned to either a room or an owner. If assigned to an owner then the json object will have an owner property and not a room property and visa versa.

Headers
Content-Type: application/json
Body
{
    "id": 11,
    "model": {...},
    "managed": false,
    "boxLength": "STRING",
    "titleLocation": "STRING",
    "name": "Computer",
    "dateCreated": 1382994855640,
    "active": "BOOLEAN",
    "room": {...},
    "owner": {...}
    "dateUpdated": 1382994855640
}

Verify an asset

Create a record of the time and user that audited an asset.

Verify Asset
PUT/assets/{id}/verify

Example URI

PUT /assets/id/verify
URI Parameters
HideShow
id
string (required) 

Id of the Asset

Response  204

Attach Asset Image

Attach an image to a asset

Attach an Image to a Asset
POST/assets/{id}/attachImage

Example URI

POST /assets/id/attachImage
URI Parameters
HideShow
id
string (required) 

Id of the Asset

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "image": "BASE-64-IMAGE-STRING"
}
Response  200
HideShow

JSON representation of an attachment object

Headers
Content-Type: application/json
Body
{
    "id": "11"
    "storedFile": {
        "id": "INTERNAL_STORAGEID"
    }
    "downloadURL": "URL_RELATIVE_TO_SITE"
    "description": "DESCRIPTION"
    "name": "IMAGE_NAME"
    "fileName": "FILE_NAME"
    "dateCreated": "EPOCH_TIME"
    "image": "BOOLEAN"
    "storageId": "INTERNAL_STORAGEID"
}

Asset Types

Retrieve a Single Asset Type
GET/assets/types/{id}

Example URI

GET /assets/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset Type

Response  200
HideShow

JSON representation of the Asset Type Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1572645873930,
  "unitPriceEnabled": true,
  "name": "Computers",
  "active": true,
  "meteringEnabled": true,
  "id": 46,
  "dateUpdated": 1572645873930
}

Edit an Asset Type
PUT/assets/types/{id}

To update an Asset Type send JSON with the Asset Type’s ID and updated value for one or more of the attributes.

Example URI

PUT /assets/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset Type

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 14,
  "name": "Copy/Print/Fax",
  "code": "Copy/Print/Fax",
  "description": "copy print fax description",
  "meteringEnabled": true,
  "unitPriceEnabled": true,
  "sortOrder": 9,
  "centerLinks": [
    {
      "center": {
        "name": "Test Asset",
        "id": 78
      }
    },
    {
      "center": {
        "name": "copy asset center",
        "id": 79
      }
    }
  ],
  "fields": [
    {
      "baseField": {
        "name": "Building",
        "id": 129
      },
      "required": false,
      "sortOrder": 1
    }
  ],
  "meterTypes": [
    {
      "code": "P-COL",
      "name": "Print Color",
      "id": 2
    }
  ],
  "queueColumns": [
    {
      "name": "Manufacturer",
      "field": {
        "name": "Manufacturer",
        "id": 126,
        "sortOrder": 0
      },
      "sortOrder": 1
    }
  ]
}
Response  200
HideShow

JSON representation of the Asset Type Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1572645873930,
  "unitPriceEnabled": true,
  "name": "Computers",
  "active": true,
  "meteringEnabled": true,
  "id": 46,
  "dateUpdated": 1572645873930
}

Remove an Asset Type
DELETE/assets/types/{id}

Example URI

DELETE /assets/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Asset Type

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Asset Type Collection

List of all Asset Types
GET/assets/types/{?savedSearchId}

Example URI

GET /assets/types/?savedSearchId=
URI Parameters
HideShow
savedSearchId
string (optional) 

Saved Search Id used to filter Asset Types list.

Response  200
HideShow

JSON representation of the Asset Type Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id": 11,
        "meteringEnabled": true,
        "description": "Desktop Computers",
        "sortOrder": 0,
        "name": "Computer",
        "active": true,
        "dateCreated": 1262626862660,
        "code": "COMP",
        "unitPriceEnabled": true,
        "dateUpdated": 1262626862660
    },
    {
        "id":12
        ...
    },
    {
        "id":13
        ...
    }
]

Create an Asset Type
POST/assets/types/

The following attributes are required to create an Asset Type: name, meteringEnabled, unitPriceEnabled, centerLinks with at least one Center.

Example URI

POST /assets/types/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "Computers",
  "meteringEnabled": true,
  "unitPriceEnabled": true,
  "centerLinks": [
    {
      "center": {
        "name": "Test Asset",
        "id": 78
      }
    }
  ]
}
Response  201
HideShow

JSON representation of the Asset Type Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1572645873930,
  "unitPriceEnabled": true,
  "name": "Computers",
  "active": true,
  "meteringEnabled": true,
  "id": 46,
  "dateUpdated": 1572645873930
}

Asset Model Collection

Asset Model

List of all Asset Models
GET/assets/models

Example URI

GET /assets/models
Response  200
HideShow

JSON representation of an attachment type object

Headers
Content-Type: application/json
Body
[
    {
        "id": 11,
        ...
    },
    {
        "id":12
        ...
    },
    {
        "id":13
        ...
    }
]

Meter Types

List of all Meter Types
GET/assets/types/metertypes

Example URI

GET /assets/types/metertypes
Response  200
HideShow

JSON representation of the Asset Meter Type Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "code": "P-BW",
        "dateCreated": 1132265366990,
        "sortOrder": 1,
        "name": "Print BW",
        "active": true,
        "meterCode": "P-BW",
        "dateUpdated": 1132265366990
    },
    {
        "code": "P-COL",
        ...
    },
    {
        "code": "C-BW",
        ...
    }
]

Reservation

Reservation-related resources of iOffice API

Reservation

A single reservation object.

Retrieve a Single Reservation
GET/reservations/{id}

Example URI

GET /reservations/id
URI Parameters
HideShow
id
string (required) 

ID of the Reservation

Response  200
HideShow

JSON representation of the Reservation Resource

Headers
Content-Type: application/json
Body
{
    "id": ID,
    "center": {...},
    "numberOfPeople": INT,
    "allDay": "BOOLEAN",
    "checkedIn": "BOOLEAN",
    "checkedOut": "BOOLEAN",
    "notes": "STRING"
    "madeInIoffice": "BOOLEAN",
    "name": "STRING",
    "user": {...},
    "dateUpdated": EPOCH_TIME,
    "room": {...}
}

Edit a Reservation
PUT/reservations/{id}

To update a Reservation send JSON with the Reservation’s ID and updated value for one or more of the attributes.

Example URI

PUT /reservations/id
URI Parameters
HideShow
id
string (required) 

ID of the Reservation

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "user": {
    "id": 56
  }
}
Response  200
HideShow

JSON representation of the Reservation Resource

Headers
Content-Type: application/json
Body
{
    "id": ID,
    "center": {...},
    "numberOfPeople": INT,
    "allDay": "BOOLEAN",
    "checkedIn": "BOOLEAN",
    "checkedOut": "BOOLEAN",
    "notes": "STRING"
    "madeInIoffice": "BOOLEAN",
    "name": "STRING",
    "user": {...},
    "dateUpdated": EPOCH_TIME,
    "room": {...}
}

Remove a Reservation
DELETE/reservations/{id}

Example URI

DELETE /reservations/id
URI Parameters
HideShow
id
string (required) 

ID of the Reservation

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Reservation Collection

Collection of all Reservations.

List of all Reservations
GET/reservations/{?includeCancelled,includePastReservations,includeNonCancelled,showOnlyMyReservations,startDate,endDate,buildingId,roomId,modifiedOrCreatedAfter,selector,startAt}

Example URI

GET /reservations/?includeCancelled=true&includePastReservations=true&includeNonCancelled=false&showOnlyMyReservations=false&startDate=1404410211910&endDate=1404421051661&buildingId=44&roomId=16&modifiedOrCreatedAfter=1549319834&selector=allDay&startAt=0
URI Parameters
HideShow
includeCancelled
boolean (optional) Default: false Example: true

If true, query will include cancelled reservations

includeNonCancelled
boolean (optional) Default: true Example: false

If true, query will include non-cancelled reservations

includePastReservations
boolean (optional) Default: false Example: true

If true, query will include past reservations

showOnlyMyReservations
boolean (optional) Default: true Example: false

If true, query will only include logged in user’s reservations

startDate
number (optional) Example: 1404410211910

Epoch time (milliseconds) of reservation start date

endDate
number (optional) Example: 1404421051661

Epoch time (milliseconds) of reservation end date

buildingId
number (optional) Example: 44

Id of the building to query from

limit
number (optional) Example: 500

Reservations List limit to query from

roomId
number (optional) Example: 16

Id of the room to query from

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection

selector
string (optional) Example: allDay

Selector ID

startAt
number (optional) Example: 0

Start at

Response  200
HideShow

JSON representation of the Reservation Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Reservation
POST/reservations/

The following attributes are required to create a Reservation: startDate, endDate, user, room, center, and allDay.

Example URI

POST /reservations/
Request
HideShow
Headers
Content-Type: application/json
Body
{
        "startDate": EPOCH_TIME,
        "endDate": EPOCH_TIME
        "numberOfPeople": INT,
        "allDay": "BOOLEAN",
        "name": "STRING",
        "center": {...},
        "user": {...},
        "guests": [..],
        "room": {...},
        "notes": "STRING"
    }
Response  201
HideShow

JSON representation of the Reservation Resource

Headers
Content-Type: application/json
Body
{
    "id": ID,
    "center": {...},
    "numberOfPeople": INT,
    "allDay": "BOOLEAN",
    "checkedIn": "BOOLEAN",
    "checkedOut": "BOOLEAN",
    "notes": "STRING"
    "madeInIoffice": "BOOLEAN",
    "name": "STRING",
    "user": {...},
    "dateUpdated": EPOCH_TIME,
    "room": {...}
}

Cancel

Cancel Reservation

Cancel Reservation
PUT/reservations/{id}/cancel/{?page}

Example URI

PUT /reservations/1111/cancel/?page=ReservationDetailsPage
URI Parameters
HideShow
id
string (required) Example: 1111

ID of the Reservation

page
string (required) Example: ReservationDetailsPage

Name of page that has reservation listed

Response  200
HideShow
Body
{
      "id": ID,
      "cancellationReason": "STRING"
      "cancelled": "BOOLEAN"
      "startDate": EPOCH_TIME,
      "endDate": EPOCH_TIME
      "numberOfPeople": INT,
      "checkedIn": "BOOLEAN",
      "checkedOut": "BOOLEAN",
      "name": "STRING",
      "dateCreated": EPOCH_TIME,
      "dateUpdated": EPOCH_TIME,
      "user": {...},
      "center": {...},
      "room": {...},
      "notes": "STRING"
  }

Check In

Reservation Check In

Reservation Check In
PUT/reservations/{id}/checkIn

Example URI

PUT /reservations/id/checkIn
URI Parameters
HideShow
id
string (required) 

ID of the Reservation

Response  200
HideShow

JSON representation of the Reservation Resource

Headers
Content-Type: application/json
Body
{
    "id": ID,
    "center": {...},
    "numberOfPeople": INT,
    "allDay": "BOOLEAN",
    "checkedIn": "BOOLEAN",
    "checkedOut": "BOOLEAN",
    "notes": "STRING"
    "madeInIoffice": "BOOLEAN",
    "name": "STRING",
    "user": {...},
    "dateUpdated": EPOCH_TIME,
    "room": {...}
}

Check Out

Reservation Check Out

Not available through the desktop app

Reservation Check Out
PUT/reservations/{id}/checkOut

Example URI

PUT /reservations/id/checkOut
URI Parameters
HideShow
id
string (required) 

ID of the Reservation

Response  200
HideShow

JSON representation of the Reservation Resource

Headers
Content-Type: application/json
Body
{
    "id": ID,
    "center": {...},
    "numberOfPeople": INT,
    "allDay": "BOOLEAN",
    "checkedIn": "BOOLEAN",
    "checkedOut": "BOOLEAN",
    "notes": "STRING"
    "madeInIoffice": "BOOLEAN",
    "name": "STRING",
    "user": {...},
    "dateUpdated": EPOCH_TIME,
    "room": {...}
}

Reservation Rules

Reservation Rules related resources of iOffice API

Create/Update/Delete Rule
PUT/centers/reservations/rules/{?selector}

This API creates/updates/deletes particular rule for Space Type, Center, Space and Neighbourhood for selected center

Rules mentioned in the payload will get created/updated. The rules not mentioned in the payload will get deleted

Here, API is simply updating the list of rules available

Example URI

PUT /centers/reservations/rules/?selector=rules
URI Parameters
HideShow
selector
string (required) Example: rules

Selector ID (returns exact response with ‘rules’)

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "centerId": 82,
  "ruleList": [
    {
      "value": "1510m",
      "$type$": "MaxDuration"
    },
    {
      "roomTypeId": 52,
      "$type$": "OnlyDuringWorkHours"
    },
    {
      "$type$": "MaxLeadTime",
      "value": "1580m",
      "roomId": 41932
    },
    {
      "$type$": "IncludeAllMembers",
      "value": "true",
      "neighborhoodId": 41
    }
  ]
}
Response  200
HideShow
Body
{
  "name": "Reservation Center",
  "rules": "{\"centerId\":82,\"ruleList\":[{\"value\":\"1510m\",\"$type$\":\"MaxDuration\"},{\"roomTypeId\":52,\"$type$\":\"OnlyDuringWorkHours\"},{\"roomId\":41932,\"value\":\"1580m\",\"$type$\":\"MaxLeadTime\"},{\"neighborhoodId\":41,\"$type$\":\"IncludeAllMembers\"}]}",
  "id": 82
}

Reservation Queue

Reservation Queue related resources of iOffice API

Create Ticket Details In Reservation Queue
GET/maintenance/priorities/earliestRequiredDate/{?centerId,typeId}

This API retrieves the details of ticket to create from Reservation Queue page

Example URI

GET /maintenance/priorities/earliestRequiredDate/?centerId=70&typeId=215
URI Parameters
HideShow
centerId
number (required) Example: 70

Center ID

typeId
number (required) Example: 215

Type ID

Response  200
HideShow
Body
[
   {
      "default": false,
      "priority": {
         "color": {},
         "name": "Really Really Slow",
         "id": 15,
         "colorHex": "ffffff",
         "noticeTime": 10000
      },
      "earliestRequiredDate": 1673401211549
   },
   {
      "default": false,
      "priority": {
         "color": {},
         "name": "Testing",
         "id": 16,
         "colorHex": "ffffff",
         "noticeTime": 0
      },
      "earliestRequiredDate": 1671570011557
   }

Maintenance

Maintenance-related resources of iOffice API

iOffice Service Request is known as the maintenance module internally.

Request

A single request object. The Request resource is the main component of the service request api.

Retrieve a Single Request
GET/maintenance/requests/{id}

Example URI

GET /maintenance/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Create a Request
POST/maintenance/requests/{id}

The following attributes are required to create a Request: dateRequired, requester, type,priority, and room. NOTE: If the request type’s “assetRequest” attribute is TRUE, then an “asset” attribute is required as well.

Example URI

POST /maintenance/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the Request

Request
HideShow
Headers
Content-Type: application/json
Body
{
            "dateRequired": EPOCH_TIME,
            "requester": {
                 "id": REQUESTER_ID,
            },
            "type": {
            "id": TYPE_ID,
            },
            "priority": {
            "id": PRIORITY_ID,
            },
            "room": {
            "id": ROOM_ID,
            }
         }
Response  201
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Update a Request
PUT/maintenance/requests/{id}

To update a Request send JSON with the Request’s ID and updated value for one or more of the attributes.

Example URI

PUT /maintenance/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the Request

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "room": {
    "id": 5
  }
}
Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Cancel a Request
DELETE/maintenance/requests/{id}

Example URI

DELETE /maintenance/requests/id
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow
Body
{
  "response": "Request cancelled"
}

Request Statistics
GET/maintenance/requests/stats

Statistics of Requests relative to the requesting user.

The Stats resource has the following attributes:

  • assignedCount (number of requests assigned to this user)

  • highPriorityCount (number or requests who’s type have a sortOrder less than or equal to 2)

  • lowPriorityCount (number or requests who’s type have a sortOrder greater than to 2)

  • pastDueCount (number or requests that are past due)

  • totalCount (total number or requests in the global queue)

Example URI

GET /maintenance/requests/stats
Response  200
HideShow
Body
{
              "assignedCount": INT
              "highPriorityCount": INT
              "lowPriorityCount": INT
              "pastDueCount": INT
              "totalCount": INT
         }

Add a comment to a Request
POST/maintenance/requests/{id}/addComment

Add a comment to a request

Example URI

POST /maintenance/requests/id/addComment
URI Parameters
HideShow
id
string (required) 

Id of the Request

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "comment": "Your new comment string"
}
Response  200
HideShow
Body
{
  "comments": "<div class='Content'>YOUR COMMENT</div></div>"
}

Attach an Image to a Request
POST/maintenance/requests/{id}/attachImage

Attach an image to a request

Example URI

POST /maintenance/requests/id/attachImage
URI Parameters
HideShow
id
string (required) 

Id of the Request

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "image": "BASE-64-IMAGE-STRING"
}
Response  200
HideShow
Body
{
        "id": ID
        "storedFile": {
            "id": "INTERNAL_STORAGEID"
        }
        "downloadURL": "URL_RELATIVE_TO_SITE"
        "description": "DESCRIPTION"
        "name": "IMAGE_NAME"
        "fileName": "FILE_NAME"
        "dateCreated": EPOCH_TIME
        "image": "BOOLEAN"
        "storageId": "INTERNAL_STORAGEID"
    }

Accept a Request
PUT/maintenance/requests/{id}/accept

** User must be a valid operator**

Set operator’s status for a request as accepted.

Example URI

PUT /maintenance/requests/id/accept
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Reject a Request
PUT/maintenance/requests/{id}/reject

** User must be a valid operator**

Set operator’s status for a request as rejected.

Example URI

PUT /maintenance/requests/id/reject
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Start a Request
PUT/maintenance/requests/{id}/start

** User must be a valid operator**

Set operator’s status for a request as started.

Example URI

PUT /maintenance/requests/id/start
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Hold a Request
PUT/maintenance/requests/{id}/hold

** User must be a valid operator**

Set operator’s status for a request as on hold.

Example URI

PUT /maintenance/requests/id/hold
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Resume a Request
PUT/maintenance/requests/{id}/resume

** User must be a valid operator**

Set operator’s status for a request as resumed.

Example URI

PUT /maintenance/requests/id/resume
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Add Resolution Note to Request
PUT/maintenance/requests/{id}/addResolution

** User must be a valid operator**

Add Resolution Note before Completing Request

Example URI

PUT /maintenance/requests/id/addResolution
URI Parameters
HideShow
id
string (required) 

ID of the Request

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "resolution": "Resolved Ticket",
  "operator": {
    "id": 11855
  }
}
Response  200
HideShow
Body
{
     "requester": { ... },
     "attachments": [...],
     "comments": "",
     "center": { ... },
     "totalOperatorsNeeded": 1,
     "vendedItems": false,
     "priority": { ... },
     "type": { ... },
     "enteredBy": { ... },
     "resolution": "Rainforest SiteAdmin1234 (Feb 16, 2023 01:11 PM GMT) : Resolved Ticket",
     "room": {... },
     "dateCreated": 1676546622000,
     "dateRequired": 1676550300000,
     "dateStarted": 1676553106000,
     "operators": [... ],
     "dateCompleted": 1676553119000,
     "supplies": [... ],
     "contact": {... },
     "id": 14260,
     "fields": [... ],
     "requestStatus": {
         "code": "comp",
         "name": "Completed",
         "id": 4
     }
   }

Complete a Request
PUT/maintenance/requests/{id}/complete

** User must be a valid operator**

Set operator’s status for a request as complete.

Example URI

PUT /maintenance/requests/id/complete
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow

JSON representation of the Request Resource

Headers
Content-Type: application/json
Body
{
    "requestStatus": {...},
    "requester": {...},
    "requesterPrimaryContact": "BOOLEAN",
    "type": {...},
    "totalOperatorsNeeded": INT,
    "dateRequired": EPOCH_TIME,
    "contact": {...},
    "assetStatus": "STATUS_STRING",
    "dateUpdated": EPOCH_TIME,
    "center": {...},
    "id": REQUEST_ID,
    "fieldValue": [...],
    "priority": {...},
    "dateCreated": EPOCH_TIME,
    "scheduledTask": "BOOLEAN",
    "operators": [],
    "attachments": [...],
    "warning": {...},
    "room": {...},
    "fields": [...],
    "completed": "BOOLEAN",
    "supplies": [...],
    "valueFields": [...]
}

Archive a Request
POST/maintenance/requests/{id}/archive

Example URI

POST /maintenance/requests/id/archive
URI Parameters
HideShow
id
string (required) 

ID of the Request

Response  200
HideShow
Body
{}

Archived Requests

A single archived maintenance request

Retrieve a single Archived Request
GET/maintenance/requests/archived/{id}

Example URI

GET /maintenance/requests/archived/id
URI Parameters
HideShow
id
String (required) 

ID of the archived maintenance request

Response  200
HideShow

JSON representation of the Archived Maintenance Resource

Headers
Content-Type: application/json
Body
{
     "requester": {
          "name": "Rainforest SiteAdmin1234",
          "id": 2094,
          "email": "siteadmin1234@eptura.com"
     },
     "attachments": [ ... ],
     "comments": "...",
     "center": {
          "allowRequestCancel": false,
          "allowInvoicing": false,
          "allowReferenceNumber": false,
          "name": "Service Request",
          "timeZone": {
              "ID": "Europe/London"
              },
          "hoursOfOperation": [
            {
              "endTimeMinutes": 0,
              "dayId": 2,
              "startTimeMinutes": 0,
              "endTimeHour": 17,
              "id": 349,
              "startTimeHour": 8
            }, ...
          ],
          "id": 70,
          "autoArchiveEnabled": false,
          "requestResolutionRequired": false
     },
     "totalOperatorsNeeded": 1,
     "priority": {
          "color": {
              "red": 252,
              "green": 5,
              "blue": 5
          },
     "name": "Urgent",
     "id": 1
     },
  "type": {
     "priorityEnableForCustomer": true,
     "priorities": [
          {
              "color": {
                  "red": 255,
                  "green": 255,
                  "blue": 255
                  },
              "name": "Priority1404845",
              "id": 280
              },... ],
     "product": {
         "name": "Air Conditioning and Heating",
         "id": 7,
         "category": {
              "name": "Work Order",
              "id": 100
              }
         },
     "dateRequiredEnabledForCustomer": true,
     "assetRequest": false,
     "supplies": [... ],
     "operatorInstructions": [... ],
     "name": "Too cold",
     "edgeDispatch": false,
     "id": 52,
     "fields": [... ]
     },
  "resolution": "Rainforest SiteAdmin1234 (Feb 16, 2023 03:22 PM GMT) : Ticket Resolved",
  "room": {... },
  "dateArchived": 1676561013000,
  "dateCreated": 1676560912000,
  "dateRequired": 1678720860000,
  "dateStarted": 1676560937000,
  "operators": [... ],
  "dateCompleted": 1676560942000,
  "requestId": 14366,
  "supplies": [... ],
  "contact": {... },
  "id": 4897,
  "fields": [... ],
  "requestStatus": {
      "code": "comp",
      "name": "Completed",
      "id": 4
      }
 }

Archived Collection

Collection of archived maintenance requests

List of all Archived Requests
GET/maintenance/requests/archived/{?modifiedOrCreatedAfter}

Example URI

GET /maintenance/requests/archived/?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified/created items in the collection.

Response  200
HideShow

JSON representation of the Archived Maintenance Resource

Headers
Content-Type: application/json
Body
[
  {
     "requester": {
          "name": "Rainforest SiteAdmin1234",
          "id": 2094,
          "email": "siteadmin1234@eptura.com"
     },
     "attachments": [ ... ],
     "comments": "...",
     "center": {
          "allowRequestCancel": false,
          "allowInvoicing": false,
          "allowReferenceNumber": false,
          "name": "Service Request",
          "timeZone": {
              "ID": "Europe/London"
              },
          "hoursOfOperation": [
            {
              "endTimeMinutes": 0,
              "dayId": 2,
              "startTimeMinutes": 0,
              "endTimeHour": 17,
              "id": 349,
              "startTimeHour": 8
            }, ...
          ],
          "id": 70,
          "autoArchiveEnabled": false,
          "requestResolutionRequired": false
     },
     "totalOperatorsNeeded": 1,
     "priority": {
          "color": {
              "red": 252,
              "green": 5,
              "blue": 5
          },
     "name": "Urgent",
     "id": 1
     },
  "type": {
     "priorityEnableForCustomer": true,
     "priorities": [
          {
              "color": {
                  "red": 255,
                  "green": 255,
                  "blue": 255
                  },
              "name": "Priority1404845",
              "id": 280
              },... ],
     "product": {
         "name": "Air Conditioning and Heating",
         "id": 7,
         "category": {
              "name": "Work Order",
              "id": 100
              }
         },
     "dateRequiredEnabledForCustomer": true,
     "assetRequest": false,
     "supplies": [... ],
     "operatorInstructions": [... ],
     "name": "Too cold",
     "edgeDispatch": false,
     "id": 52,
     "fields": [... ]
     },
  "resolution": "Rainforest SiteAdmin1234 (Feb 16, 2023 03:22 PM GMT) : Ticket Resolved",
  "room": {... },
  "dateArchived": 1676561013000,
  "dateCreated": 1676560912000,
  "dateRequired": 1678720860000,
  "dateStarted": 1676560937000,
  "operators": [... ],
  "dateCompleted": 1676560942000,
  "requestId": 14366,
  "supplies": [... ],
  "contact": {... },
  "id": 4897,
  "fields": [... ],
  "requestStatus": {
      "code": "comp",
      "name": "Completed",
      "id": 4
      }
 },...
  ]

Requests Collection

Collection of all Requests.

List of all Requests
GET/maintenance/requests/{?priority,assigned,pastDue,requestTypeId,modifiedOrCreatedAfter,limit,orderBy,orderByType,showOnlyMyRequests,selector}

Example URI

GET /maintenance/requests/?priority=&assigned=&pastDue=&requestTypeId=&modifiedOrCreatedAfter=1549319834&limit=5&orderBy=&orderByType=&showOnlyMyRequests=&selector=
URI Parameters
HideShow
priority
string (optional) 

Query for high or low priority tickets:

high (sortOrder less than or equal to 2)

low (sortOrder greater than 2)

Choices: low high

assigned
string (optional) 

Query for tickets assigned to logged in user

Choices: me

pastDue
boolean (optional) 

If true, query will return past due items

requestTypeId
number (optional) 

number of request type Id

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

limit
number (optional) Example: 5

Request List limit to query from.

orderBy
string (optional) 

If id List displayed by id.

orderByType
string (optional) 

If desc List displayed by Descending Order.

showOnlyMyRequests
boolean (optional) 

If true then shows only Request related to User.

selector
string (optional) 

If id then selects requests based on id.

Response  200
HideShow

JSON representation of the Requests Collection Resource.

Headers
Content-Type: application/json
Body
[
    {
        "requestStatus": {...},
        "requester": {...},
        "requesterPrimaryContact": "BOOLEAN",
        "type": {...},
        "totalOperatorsNeeded": INT,
        "dateRequired": EPOCH_TIME,
        "contact": {...},
        "assetStatus": "STATUS_STRING",
        "dateUpdated": EPOCH_TIME,
        "center": {...},
        "id": REQUEST_ID,
        "fieldValue": [...],
        "priority": {...},
        "dateCreated": EPOCH_TIME,
        "scheduledTask": "BOOLEAN",
        "operators": [],
        "attachments": [...],
        "warning": {...},
        "room": {...},
        "fields": [...],
        "completed": "BOOLEAN",
        "supplies": [...],
        "valueFields": [...]
    },...
  ]

Request Type

The Request Type is the building block from which requests are created.

A single request type object.

Retrieve a Single Request Type
GET/maintenance/types/{id}

Example URI

GET /maintenance/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Request Type

Response  200
HideShow

JSON representation of the Request Type Resource

Headers
Content-Type: application/json
Body
{
    "defaultPriority": {
        "id": 3,
        "color": {...},
        "sortOrder": 3,
        "name": "Normal"
    },
    "type": "ship",
    "priorityEnableForCustomer": "true",
    "dateRequiredEnabledForCustomer": "true",
    "dateUpdated": 1126109927833,
    "totalOperatorsRequired": 1,
    "product": {
        "id": 10,
        "sortOrder": 4,
        "name": "Arwing",
        "dateCreated": 1126040636373,
        "dateUpdated": 1127922019337
    },
    "id": 68,
    "SLAMinutes": 0,
    "estimatedTime": 0,
    "name": "Thruster Repair",
    "dateCreated": 1126109927833,
    "fields": [...]
}

Create a Request Type
POST/maintenance/types/{id}

The following attributes are required to create a Request Type: product and name.

Example URI

POST /maintenance/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Request Type

Request
HideShow
Headers
Content-Type: application/json
Body
{
        "name": "Ship Wing Repair",
        "Product": {
            "id": 78
        },
    }
Response  201
HideShow

JSON representation of the Request Type Resource

Headers
Content-Type: application/json
Body
{
    "defaultPriority": {
        "id": 3,
        "color": {...},
        "sortOrder": 3,
        "name": "Normal"
    },
    "type": "ship",
    "priorityEnableForCustomer": "true",
    "dateRequiredEnabledForCustomer": "true",
    "dateUpdated": 1126109927833,
    "totalOperatorsRequired": 1,
    "product": {
        "id": 10,
        "sortOrder": 4,
        "name": "Arwing",
        "dateCreated": 1126040636373,
        "dateUpdated": 1127922019337
    },
    "id": 68,
    "SLAMinutes": 0,
    "estimatedTime": 0,
    "name": "Thruster Repair",
    "dateCreated": 1126109927833,
    "fields": [...]
}

Update a Request Type
PUT/maintenance/types

To update a Request Type send JSON with the Category’s ID and updated value for one or more of the attributes.

Example URI

PUT /maintenance/types
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 1041,
  "iconUid": "external-flaticons-lineal-color-flat-icons:external-pin-sewing-flaticons-lineal-color-flat-icons-2"
}
Response  200
HideShow
Body
{
  "product": {
    "name": "Break Room",
    "id": 20,
    "category": {
      "name": "Work Order",
      "id": 100
    }
  },
  "code": "",
  "name": "RequestType - 2658487",
  "iconUid": "external-flaticons-lineal-color-flat-icons:external-pin-sewing-flaticons-lineal-color-flat-icons-2",
  "id": 1041
}

Delete a Request Type
DELETE/maintenance/types/{id}

Example URI

DELETE /maintenance/types/id
URI Parameters
HideShow
id
string (required) 

ID of the Request Type

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Request Types Collection

Collection of all Request Types.

List of all Request Types
GET/maintenance/types{?modifiedOrCreatedAfter,centerId}

Example URI

GET /maintenance/types?modifiedOrCreatedAfter=1549319834&centerId=70
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

centerId
number (optional) Example: 70

Id of center to query from.

Response  200
HideShow

JSON representation of the Request Type Resource

Headers
Content-Type: application/json
Body
[  
    {
        "defaultPriority": {
            "id": 3,
            "color": {...},
            "sortOrder": 3,
            "name": "Normal"
        },
        "type": "ship",
        "priorityEnableForCustomer": "true",
        "dateRequiredEnabledForCustomer": "true",
        "dateUpdated": 1126109927833,
        "totalOperatorsRequired": 1,
        "product": {
            "id": 10,
            "sortOrder": 4,
            "name": "Arwing",
            "dateCreated": 1126040636373,
            "dateUpdated": 1127922019337
        },
        "id": 68,
        "SLAMinutes": 0,
        "estimatedTime": 0,
        "name": "Thruster Repair",
        "dateCreated": 1126109927833,
        "fields": [...]
    },...
   ]

Request Types Recent Requests Collection

Collection of all recent Request Types.

List of Recent Request Types
GET/maintenance/types/recent{?modifiedOrCreatedAfter,centerId,assetRequestTypesOnly}

Example URI

GET /maintenance/types/recent?modifiedOrCreatedAfter=1549319834&centerId=70&assetRequestTypesOnly=false
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

centerId
number (optional) Example: 70

Id of center to query from.

assetRequestTypesOnly
boolean (optional) Example: false

If Request is Asset Type then assetRequestTypesOnly should be true.

Response  200
HideShow

JSON representation of the Requests Types Recent Requests Collection Resource.

Headers
Content-Type: application/json
Body
[
            {
               "product": {
                    "name": "Product 3104688",
                    "id": 222,
                    "category": {
                          "hidden": false,
                          "name": "Category 3769587",
                          "id": 318
                          }
                    },
               "code": "",
               "assetRequest": false,
               "center": {
                     "name": "Service Request",
                     "id": 70
                     },
               "name": "RequestType - 9745771",
               "id": 525
            },...
          ]

Request Types Common Requests Collection

Collection of all Common Request Types.

List of Common Request Types
GET/maintenance/types/recent{?modifiedOrCreatedAfter,centerId,assetRequestTypesOnly}

Example URI

GET /maintenance/types/recent?modifiedOrCreatedAfter=1549319834&centerId=70&assetRequestTypesOnly=false
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

centerId
number (optional) Example: 70

Id of center to query from.

assetRequestTypesOnly
boolean (optional) Example: false

If Request is Asset Type then assetRequestTypesOnly should be true.

Response  200
HideShow

JSON representation of the Requests Types Common Requests Collection Resource.

Headers
Content-Type: application/json
Body
[
            {
               "product": {
                    "name": "Product 3104688",
                    "id": 222,
                    "category": {
                          "hidden": false,
                          "name": "Category 3769587",
                          "id": 318
                          }
                    },
               "code": "",
               "assetRequest": false,
               "center": {
                     "name": "Service Request",
                     "id": 70
                     },
               "name": "RequestType - 9745771",
               "id": 525
            },...
          ]

Get Earliest SLA Date

Get the earliest SLA date that a Request can be required to be completed by.

Get SLA Date
GET/maintenance/types/{id}/earliestSlaDate/{?centerId,startDate,modifiedOrCreatedAfter}

Example URI

GET /maintenance/types/id/earliestSlaDate/?centerId=&startDate=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
id
number (required) 

Request Type Id

centerId
number (required) 

Request’s Center Id

startDate
number (required) 

Request’s Start Date

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow
Headers
Content-Type: application/json
Body
{
  "time": 1676546617455
}

Scheduled Task

A single scheduled task object. The scheduled task resource is the component of the service request api.

Retrieve a Single Scheduled Task
GET/maintenance/scheduled/{id}

Example URI

GET /maintenance/scheduled/id
URI Parameters
HideShow
id
string (required) 

ID of the Scheduled task

Response  200
HideShow

JSON representation of the Scheduled task Resource

Headers
Content-Type: application/json
Body
[
           {
             "comments": "",
             "nextRequiredDate": 1673883180000,
             "requestType": {
                  "code": "",
                  "name": "Elevator Moves Too Fast (3on, 3oasac)",
                  "id": 998
                  },
             "center": {
                   "name": "Service Request",
                   "id": 70
                   },
             "taskDescription": "Test",
             "active": true,
             "howOftenCount": 1,
             "fieldValue": [... ],
             "requestor": {
                   "name": "Rainforest SiteAdmin1234",
                   "id": 2094
                   },
             "room": {
                    "name": "1-400",
                    "id": 1121,
                    "floor": {
                         "name": "1",
                         "id": 42,
                         "building": {
                               "code": "DO NOT REMOVE",
                               "name": "Reservation",
                               "id": 66
                               }
                         }
                    },
             "howOften": "everyday",
             "notificationDayCount": 1,
             "scheduleValues": "1,2,3,4,5,6,7",
             "dateCreated": 1672912412000,
             "taskFrequency": "daily",
             "contact": {
                    "name": "Rainforest SiteAdmin1234",
                    "id": 2094
             },
             "howOftenDay": 0,
             "howOftenWeek": 0,
             "nextSubmissionDate": 1673796780000,
             "id": 156,
             "startDate": 1673883180000
           }
       ]

Create a Scheduled Task
POST/maintenance/scheduled/{id}

The following attributes are required to create a Request: dateRequired, requester, type,priority, and room. NOTE: If the request type’s “assetRequest” attribute is TRUE, then an “asset” attribute is required as well.

Example URI

POST /maintenance/scheduled/id
URI Parameters
HideShow
id
string (required) 

ID of the Scheduled task

Request
HideShow
Headers
Content-Type: application/json
Body
[
             {
                "comments": "",
                "nextRequiredDate": 1673883180000,
                "requestType": {
                      "code": "",
                      "name": "Elevator Moves Too Fast (3on, 3oasac)",
                      "id": 998
                      },
                "center": {
                      "name": "Service Request",
                      "id": 70
                      },
                "taskDescription": "Test",
                "active": true,
                "howOftenCount": 1,
                "fieldValue": [... ],
                "requestor": {
                     "name": "Rainforest SiteAdmin1234",
                     "id": 2094
                     },
                "room": {
                     "name": "1-400",
                     "id": 1121,
                     "floor": {
                          "name": "1",
                          "id": 42,
                          "building": {
                               "code": "DO NOT REMOVE",
                               "name": "Reservation",
                               "id": 66
                               }
                          }
                     },
                "howOften": "everyday",
                "notificationDayCount": 1,
                "scheduleValues": "1,2,3,4,5,6,7",
                "dateCreated": 1672912412000,
                "taskFrequency": "daily",
                "contact": {
                     "name": "Rainforest SiteAdmin1234",
                     "id": 2094
                     },
                "howOftenDay": 0,
                "howOftenWeek": 0,
                "nextSubmissionDate": 1673796780000,
                "id": 156,
                "startDate": 1673883180000
             }
         ]
Response  201
HideShow

JSON representation of the Scheduled task Resource

Headers
Content-Type: application/json
Body
[
           {
             "comments": "",
             "nextRequiredDate": 1673883180000,
             "requestType": {
                  "code": "",
                  "name": "Elevator Moves Too Fast (3on, 3oasac)",
                  "id": 998
                  },
             "center": {
                   "name": "Service Request",
                   "id": 70
                   },
             "taskDescription": "Test",
             "active": true,
             "howOftenCount": 1,
             "fieldValue": [... ],
             "requestor": {
                   "name": "Rainforest SiteAdmin1234",
                   "id": 2094
                   },
             "room": {
                    "name": "1-400",
                    "id": 1121,
                    "floor": {
                         "name": "1",
                         "id": 42,
                         "building": {
                               "code": "DO NOT REMOVE",
                               "name": "Reservation",
                               "id": 66
                               }
                         }
                    },
             "howOften": "everyday",
             "notificationDayCount": 1,
             "scheduleValues": "1,2,3,4,5,6,7",
             "dateCreated": 1672912412000,
             "taskFrequency": "daily",
             "contact": {
                    "name": "Rainforest SiteAdmin1234",
                    "id": 2094
             },
             "howOftenDay": 0,
             "howOftenWeek": 0,
             "nextSubmissionDate": 1673796780000,
             "id": 156,
             "startDate": 1673883180000
           }
       ]

Update a Scheduled Task
PUT/maintenance/scheduled/{id}

To update a Scheduled Task send JSON with the Request’s ID and updated value for one or more of the attributes.

Example URI

PUT /maintenance/scheduled/id
URI Parameters
HideShow
id
string (required) 

ID of the Scheduled Task

Request
HideShow
Headers
Content-Type: application/json
Body
{
                   "comments": "",
                   "nextRequiredDate": 1669475640000,
                   "requestType": {
                        "id": 1069
                        },
                   "center": {
                        "id": 70
                        },
                   "taskDescription": "Need Chair123",
                   "active": true,
                   "howOftenCount": 1,
                   "requestor": {
                        "id": 2094
                        },
                   "room": {
                        "id": 1090
                        },
                   "howOften": "scheduled",
                   "notificationDayCount": 1,
                   "scheduleValues": "",
                   "dateCreated": 1669281370000,
                   "taskFrequency": "daily",
                   "contact": {
                         "id": 2094
                         },
                   "howOftenDay": 0,
                   "howOftenWeek": 0,
                   "nextSubmissionDate": 1669389240000,
                   "id": 147,
                   "startDate": 1669475640000,
                   "fieldValueMap": {... },
                   "buildingName": "Reservation",
                   "asset": null
              }
Response  200
HideShow

JSON representation of the Scheduled task Resource

Headers
Content-Type: application/json
Body
[
           {
             "comments": "",
             "nextRequiredDate": 1673883180000,
             "requestType": {
                  "code": "",
                  "name": "Elevator Moves Too Fast (3on, 3oasac)",
                  "id": 998
                  },
             "center": {
                   "name": "Service Request",
                   "id": 70
                   },
             "taskDescription": "Test",
             "active": true,
             "howOftenCount": 1,
             "fieldValue": [... ],
             "requestor": {
                   "name": "Rainforest SiteAdmin1234",
                   "id": 2094
                   },
             "room": {
                    "name": "1-400",
                    "id": 1121,
                    "floor": {
                         "name": "1",
                         "id": 42,
                         "building": {
                               "code": "DO NOT REMOVE",
                               "name": "Reservation",
                               "id": 66
                               }
                         }
                    },
             "howOften": "everyday",
             "notificationDayCount": 1,
             "scheduleValues": "1,2,3,4,5,6,7",
             "dateCreated": 1672912412000,
             "taskFrequency": "daily",
             "contact": {
                    "name": "Rainforest SiteAdmin1234",
                    "id": 2094
             },
             "howOftenDay": 0,
             "howOftenWeek": 0,
             "nextSubmissionDate": 1673796780000,
             "id": 156,
             "startDate": 1673883180000
           }
       ]

Cancel a Scheduled Task
DELETE/maintenance/scheduled/{id}

Example URI

DELETE /maintenance/scheduled/id
URI Parameters
HideShow
id
string (required) 

ID of the Scheduled Task

Response  200
HideShow
Body
{
  "response": "Request cancelled"
}

Scheduled Task Collection

Collection of all Scheduled Tasks.

List of all Scheduled Task
GET/maintenance/scheduled/{?centerId,includeActive,includeInactive,orderBy,orderByType,startAt,modifiedOrCreatedAfter}

Example URI

GET /maintenance/scheduled/?centerId=&includeActive=&includeInactive=&orderBy=&orderByType=&startAt=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
centerId
number (optional) 

id of center

includeActive
boolean (optional) 

If true, query will return includeActive

includeInactive
boolean (optional) 

If true, query will return includeInactive

startAt
number (optional) 

Start time of Request

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

orderBy
string (optional) 

If taskDescription then Scheduled Task List by taskDescription.

orderByType
string (optional) 

If asc then Scheduled Task List in Ascending Order.

Response  200
HideShow

JSON representation of the Scheduled Tasks Collection Resource.

Headers
Content-Type: application/json
Body
[
           {
               "comments": "",
               "nextRequiredDate": 1669475640000,
               "requestType": {
                    "id": 1069
                    },
               "center": {
                    "id": 70
                    },
               "taskDescription": "Need Chair123",
               "active": true,
               "howOftenCount": 1,
               "requestor": {
                    "id": 2094
                    },
               "room": {
                    "id": 1090
                    },
               "howOften": "scheduled",
               "notificationDayCount": 1,
               "scheduleValues": "",
               "dateCreated": 1669281370000,
               "taskFrequency": "daily",
               "contact": {
                     "id": 2094
                     },
               "howOftenDay": 0,
               "howOftenWeek": 0,
               "nextSubmissionDate": 1669389240000,
               "id": 147,
               "startDate": 1669475640000,
               "fieldValueMap": {... },
               "buildingName": "Reservation",
               "asset": null
          },...
      ]

Count of all Scheduled Task
GET/maintenance/scheduled/count{?includeActive,includeInactive,modifiedOrCreatedAfter}

Count of Scheduled Task.

Example URI

GET /maintenance/scheduled/count?includeActive=&includeInactive=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
centerId
number (optional) 

id of center

includeActive
boolean (optional) 

If true, query will return includeActive

includeInactive
boolean (optional) 

If true, query will return includeInactive

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow
Body
{
  "count": 634
}

Category

The Category resource gives access to Products from which you can derive Request Types.

A single category object.

Retrieve a Single Category
GET/maintenance/categories/{id}

Example URI

GET /maintenance/categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

name
string (required) 

NAME of the Category

Response  200
HideShow

JSON representation of the Category Resource

Headers
Content-Type: application/json
Body
{
            "hidden": false,
            "center": {
                  "name": "Service Request",
                  "id": 70
                  },
            "name": "Category 8143004",
            "id": 107,
            "products": [
                 {
                      "center": {
                           "name": "Service Request",
                           "id": 70
                      },
                      "name": "Product 3420221",
                      "id": 28,
                      "requestTypes": [
                           {
                               "code": "",
                               "assetRequest": false,
                               "center": {
                                   "name": "Service Request",
                                   "id": 70
                                   },
                               "name": "RequestType - 1883603",
                               "assetRequired": false,
                               "id": 189
                           },...
                      ]
                 }
            ]
        }

Create a Category
POST/maintenance/categories/{id}

The following attributes are required to create a Category: center and name.

Example URI

POST /maintenance/categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

name
string (required) 

NAME of the Category

Request
HideShow
Headers
Content-Type: application/json
Body
{
        "name": "Create Copier/Printer Equipment Service Request",
        "center": {
            "id": 70,
        },
    }
Response  201
HideShow

JSON representation of the Category Resource

Headers
Content-Type: application/json
Body
{
            "hidden": false,
            "center": {
                  "name": "Service Request",
                  "id": 70
                  },
            "name": "Category 8143004",
            "id": 107,
            "products": [
                 {
                      "center": {
                           "name": "Service Request",
                           "id": 70
                      },
                      "name": "Product 3420221",
                      "id": 28,
                      "requestTypes": [
                           {
                               "code": "",
                               "assetRequest": false,
                               "center": {
                                   "name": "Service Request",
                                   "id": 70
                                   },
                               "name": "RequestType - 1883603",
                               "assetRequired": false,
                               "id": 189
                           },...
                      ]
                 }
            ]
        }

Update a Category
PUT/maintenance/categories/{id}

To update a Category send JSON with the Category’s ID and updated value for one or more of the attributes.

Example URI

PUT /maintenance/categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

name
string (required) 

NAME of the Category

Request
HideShow
Headers
Content-Type: application/json
Body
{
                  "hidden": false,
                  "name": "demo1",
                  "id": 971,
                  "products": [... ]
               }
Response  200
HideShow

JSON representation of the Category Resource

Headers
Content-Type: application/json
Body
{
            "hidden": false,
            "center": {
                  "name": "Service Request",
                  "id": 70
                  },
            "name": "Category 8143004",
            "id": 107,
            "products": [
                 {
                      "center": {
                           "name": "Service Request",
                           "id": 70
                      },
                      "name": "Product 3420221",
                      "id": 28,
                      "requestTypes": [
                           {
                               "code": "",
                               "assetRequest": false,
                               "center": {
                                   "name": "Service Request",
                                   "id": 70
                                   },
                               "name": "RequestType - 1883603",
                               "assetRequired": false,
                               "id": 189
                           },...
                      ]
                 }
            ]
        }

Delete a Category
DELETE/maintenance/categories/{id}

Example URI

DELETE /maintenance/categories/id
URI Parameters
HideShow
name
string (required) 

NAME of the Category

id
string (required) 

ID of the Category.

Response  200
HideShow
Body
{
   {"response":"Successfully removed"}
}

Categories Collection

Collection of all Categories.

List of all Categories
GET/maintenance/categories{?modifiedOrCreatedAfter}

Example URI

GET /maintenance/categories?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Categories Collection Resource.

Headers
Content-Type: application/json
Body
[
        {
            "hidden": false,
            "center": {
                  "name": "Service Request",
                  "id": 70
                  },
            "name": "Category 8143004",
            "id": 107,
            "products": [
                 {
                      "center": {
                           "name": "Service Request",
                           "id": 70
                      },
                      "name": "Product 3420221",
                      "id": 28,
                      "requestTypes": [
                           {
                               "code": "",
                               "assetRequest": false,
                               "center": {
                                   "name": "Service Request",
                                   "id": 70
                                   },
                               "name": "RequestType - 1883603",
                               "assetRequired": false,
                               "id": 189
                           },...
                      ]
                 }
            ]
        },...
   ]

Count of all Categories
GET/maintenance/categories/count{?modifiedOrCreatedAfter}

Count of Categories.

Example URI

GET /maintenance/categories/count?modifiedOrCreatedAfter=1676615686024
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1676615686024

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow
Body
{
  "count": 634
}

Product

A single product object.

Retrieve a Single Product
GET/maintenance/products/{id}

Example URI

GET /maintenance/products/id
URI Parameters
HideShow
id
string (required) 

ID of the Product

Response  200
HideShow

JSON representation of the Product Resource

Headers
Content-Type: application/json
Body
{
            "name": "QATEst",
            "id": 815,
            "category": {
                "name": "QATest555555",
                "id": 994
            },
            "type": "facility",
            "requestTypes": [... ]
       }

Create a Product
POST/maintenance/products/{id}

The following attribute is required to create a Product: name,type and category.

Example URI

POST /maintenance/products/id
URI Parameters
HideShow
id
string (required) 

ID of the Product

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "QATEst",
  "type": "facility",
  "category": {
    "id": 994
  }
}
Response  201
HideShow

JSON representation of the Product Resource

Headers
Content-Type: application/json
Body
{
            "name": "QATEst",
            "id": 815,
            "category": {
                "name": "QATest555555",
                "id": 994
            },
            "type": "facility",
            "requestTypes": [... ]
       }

Update a Product
PUT/maintenance/products/{id}

The following attribute is required to Edit a Product: name,type and category. To update a Product send JSON with the Product’s ID and updated value for one or more of the attributes.

Example URI

PUT /maintenance/products/id
URI Parameters
HideShow
id
string (required) 

ID of the Product

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "QATEst",
  "type": "facility",
  "category": {
    "id": 994
  }
}
Response  200
HideShow

JSON representation of the Product Resource

Headers
Content-Type: application/json
Body
{
            "name": "QATEst",
            "id": 815,
            "category": {
                "name": "QATest555555",
                "id": 994
            },
            "type": "facility",
            "requestTypes": [... ]
       }

Delete a Product
DELETE/maintenance/products/{id}

Example URI

DELETE /maintenance/products/id
URI Parameters
HideShow
id
string (required) 

ID of the Product.

Response  200
HideShow
Body
{
   {"response":"Successfully removed"}
}

Products Collection

Collection of all Products.

List of all Products
GET/maintenance/products{?modifiedOrCreatedAfter}

Example URI

GET /maintenance/products?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Products Collection Resource.

Headers
Content-Type: application/json
Body
[
    {
        "id": 23,
        "name": "Copier",
        "dateCreated": 1403633288547,
        "dateUpdated": 1403633288547
    },
    {
        "id":24
        ...
    },
    {
        "id":25
        ...
    }
]

Priority

The Priority resource gives access to Products from which you can derive Request Types.

A single priority object.

Retrieve a Single Priority
GET/maintenance/priorities/{id}

Example URI

GET /maintenance/priorities/id
URI Parameters
HideShow
id
string (required) 

ID of the Priority

Response  200
HideShow

JSON representation of the Priority Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1678427551186,
  "sortOrder": 5,
  "name": "Create Copier/Printer Equipment Service Request",
  "id": 409,
  "noticeTime": 0
}

Create a Priority
POST/maintenance/priorities/{id}

The following attributes are required to create a Priority: name and sortOrder.

Example URI

POST /maintenance/priorities/id
URI Parameters
HideShow
id
string (required) 

ID of the Priority

Request
HideShow
Headers
Content-Type: application/json
Body
{
        "name": "Create Copier/Printer Equipment Service Request",
        "sortOrder": 3,
    }
Response  201
HideShow

JSON representation of the Priority Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1678427551186,
  "sortOrder": 5,
  "name": "Create Copier/Printer Equipment Service Request",
  "id": 409,
  "noticeTime": 0
}

Update a Priority
PUT/maintenance/priorities/{id}

The following attributes are required to Update a Priority: id and name ,sortOrder,noticeTime.

Example URI

PUT /maintenance/priorities/id
URI Parameters
HideShow
id
string (required) 

ID of the Priority

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 409,
  "sortOrder": 5,
  "name": "PrashantPriority",
  "noticeTime": 0
}
Response  200
HideShow

JSON representation of the Priority Resource

Headers
Content-Type: application/json
Body
{
  "dateCreated": 1678427551186,
  "sortOrder": 5,
  "name": "Create Copier/Printer Equipment Service Request",
  "id": 409,
  "noticeTime": 0
}

Delete a Priority
DELETE/maintenance/priorities/{id}

Example URI

DELETE /maintenance/priorities/id
URI Parameters
HideShow
id
string (required) 

ID of the Priority.

Response  200
HideShow
Body
{
   {"response":"Successfully removed"}
}

Priorities Collection

Collection of all Priorities.

List of all Priorities
GET/maintenance/priorities{?modifiedOrCreatedAfter}

Example URI

GET /maintenance/priorities?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Priorities Collection Resource.

Headers
Content-Type: application/json
Body
[
     {
       "id": 1,
       "color": {
           "red": 102,
           "green": 51,
           "blue": 153
       },
       "sortOrder": 1,
       "name": "Urgent"
     },...
  ]

Get Earliest Required Date

Get the earliest available date that a Request can be required to be completed by.

The time is calculated based on the following:

  • Request Type
    • Request Priority
    • Service Level Agreement (SLA) for the Request type
    • Center hours of operation

Get Date
GET/maintenance/priorities/{id}/earliestRequiredDate/{?typeId,centerId}

Example URI

GET /maintenance/priorities/id/earliestRequiredDate/?typeId=&centerId=
URI Parameters
HideShow
id
string (required) 

ID of the Request.

typeId
number (required) 

Request Type Id

centerId
number (required) 

Request’s Center Id

Response  200
HideShow
Headers
Content-Type: application/json
Body
{
  "time": 1404839102117
}

Assets Collection

Collection of Assets.

List of Assets
GET/maintenance/assets/{?modifiedOrCreatedAfter,limits}

Example URI

GET /maintenance/assets/?modifiedOrCreatedAfter=1549319834&limits=1
URI Parameters
HideShow
limits
number (optional) Example: 1

Assets List limit to query from

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Assets Collection Resource.

Headers
Content-Type: application/json
Body
[
  {
    "center": {
      "name": "Asset Center",
      "id": 69
    },
    "name": "Asset",
    "model": {
      "name": "demomodel",
      "id": 460
    },
    "id": 1215
  }
]

Agreement

Agreement-related resources of iOffice API

Agreement

A single agreement object.

Retrieve a Single Agreement
GET/agreements/{id}

Example URI

GET /agreements/id
URI Parameters
HideShow
id
string (required) 

ID of the Agreement

Response  200
HideShow

JSON representation of the Agreement Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Edit a Agreement
PUT/agreements/{id}

To update an Agreement send JSON with the Agreement’s ID and updated value for one or more of the attributes.

Example URI

PUT /agreements/id
URI Parameters
HideShow
id
string (required) 

ID of the Agreement

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "attributeName": "value"
}
Response  200
HideShow

JSON representation of the Agreement Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Remove an Agreement
DELETE/agreements/{id}

Example URI

DELETE /agreements/id
URI Parameters
HideShow
id
string (required) 

ID of the Agreement

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Agreement Collection

Collection of all Agreements.

List of all Agreements
GET/agreements{?modifiedOrCreatedAfter}

Example URI

GET /agreements?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Agreement Collection resource.

Headers
Content-Type: application/json
Body
[
    {
        "id":21
        ...
    },
    {
        "id":22
        ...
    },
    {
        "id":23
        ...
    }
]

Create a Agreement
POST/agreements

To create a Agreement send JSON with the values the new agreement should have. The field type is required in order to create a new agreement.

Example URI

POST /agreements
Response  201
HideShow

JSON representation of the Agreement Resource

Headers
Content-Type: application/json
Body
{
    "id": 23,
    ...
}

Category Item

Item related resources of iOffice API

Item Collection

Collection of all Items.

List of all Items
GET/categories/items/{?category,parent,root,startAt,modifiedOrCreatedAfter}

Example URI

GET /categories/items/?category=1&parent=2&root=true&startAt=&modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
category
integer (optional) Example: 1

If present, query will filter by category

parent
integer (optional) Example: 2

If present, query will filter by parent

root
boolean (optional) Default: false Example: true

If present, query will only return Items without a parent

modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

lowestLevel
boolean (optional) Example: false
orderBy
string (optional) Example: name
search
string (optional) 
selector
string (required) 
startAt
string (required) 
Response  200
HideShow

JSON represenation of the Item Collection Resource

Headers
Content-Type: application/json
Body
[
    {
        "id": 21,
        "name": "1 Blah s",
        "code": "bldg1",
        "depth": {
          "code": "flr",
          "dateCreated": 1435854598093,
          "level": 3,
          "name": "Floor",
          "id": 48,
          "dateUpdated": 1438958701470
        },
        "category": {
            "code": "co",
            "color": {},
            "name": "Company",
            "id": 27,
            "dateUpdated": 1435679759130
        },
        costCenterParent: {},
        "dateCreated": 1434561059383,
        "dateUpdated": 1435679209637 
    }
]

Item

A single Item object.

Retrieve a Single Item
GET/categories/items/{id}

Example URI

GET /categories/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Item

Response  200
HideShow

JSON representation of the Item Resource

Headers
Content-Type: application/json
Body
{
        "id": 21,
        "name": "1 Blah s",
        "code": "bldg1",
        "depth": {
          "code": "flr",
          "dateCreated": 1435854598093,
          "level": 3,
          "name": "Floor",
          "id": 48,
          "dateUpdated": 1438958701470
        },
        "category": {
            "code": "co",
            "color": {},
            "name": "Company",
            "id": 27,
            "dateUpdated": 1435679759130
        },
        costCenterParent: {},
        "dateCreated": 1434561059383,
        "dateUpdated": 1435679209637 
    }

Create a Item
POST/categories/items/

The following attributes are required to create an Item:

Example URI

POST /categories/items/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "new cc",
  "code": "new-cc-code",
  "category": {
    "id": 31
  }
}
Response  201
HideShow
Body
{
    "id": 21,
    "name": "1 Blah s",
    "code": "bldg1",
    "depth": {
        "code": "flr",
        "dateCreated": 1435854598093,
        "level": 3,
        "name": "Floor",
        "id": 48,
        "dateUpdated": 1438958701470
     },
    "category": {
        "code": "co",
        "color": {},
        "name": "Company",
        "id": 27,
        "dateUpdated": 1435679759130
    },
    costCenterParent: {},
    "dateCreated": 1434561059383,
    "dateUpdated": 1435679209637 
}

Edit a Item
PUT/categories/items/{id}

To update an Item send JSON with the Item’s ID and updated value for one or more of the attributes.

Example URI

PUT /categories/items/id
URI Parameters
HideShow
id
string (required) 

ID of the Item

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "name": "newName",
  "code": "bldg3"
}
Response  200
HideShow
Body
{
    "id": 23,
    "name": "newName",
    "code": "bldg3",
    "depth": {
        "code": "flr",
        "dateCreated": 1435854598093,
        "level": 3,
        "name": "Floor",
        "id": 48,
        "dateUpdated": 1438958701470
     },
    "category": {
        "code": "co",
        "color": {},
        "name": "Company",
        "id": 27,
        "dateUpdated": 1435679759130
    },
    costCenterParent: {},
    "dateCreated": 1434561059383,
    "dateUpdated": 1435679209637 
}

Remove an Item
DELETE/categories/items/{id}

Example URI

DELETE /categories/items/id
URI Parameters
HideShow
id
string (required) 

ID of the User

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Item Helpers

Get an Item's children
GET/categories/items/{id}/children

Example URI

GET /categories/items/id/children
URI Parameters
HideShow
id
string (required) 

ID of the Item

Response  200
HideShow
Body
[
  {
    "code": "f1",
    "dateCreated": 1434561227550,
    "name": "First Floor",
    "id": 137,
    "category": {
      "code": "co",
      "color": {},
      "name": "Company",
      "id": 27,
      "dateUpdated": 1435679759130
    },
    "costCenterParent": {
      "code": "bldg1",
      "dateCreated": 1434561059383,
      "name": "1 Blah s",
      "id": 133,
      "dateUpdated": 1435679209637
    },
    "dateUpdated": 1435681499297
  },
  {
    "code": "f2",
    "dateCreated": 1435783794327,
    "name": "Second Floor",
    "id": 171,
    "costCenterParent": {
      "code": "bldg1",
      "dateCreated": 1434561059383,
      "name": "1 Blah s",
      "id": 133,
      "dateUpdated": 1435679209637
    }
  }
]

Get the users assigned to a specific Item
GET/categories/items/{id}/users

Example URI

GET /categories/items/id/users
URI Parameters
HideShow
id
string (required) 

ID of the Item

Response  200
HideShow
Body
[
  {
    "floorWarden": false,
    "costCenter1": "First Floor",
    "lastName": "Silverman",
    "color": "#a5c7f7",
    "costCenter": {},
    "userName": "ssilverman",
    "specialNeeds": false,
    "room": {},
    "dateUpdated": 1435585164033,
    "firstName": "Sarah",
    "dateCreated": 1435585128170,
    "name": "Sarah Silverman",
    "id": 11,
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    },
    "costCenter2": "Edit Team 1",
    "email": "test@test.com"
  },
  {
    "costCenter1": "First Floor",
    "lastName": "Operator",
    "extension": "",
    "color": "#8b80f2",
    "jobTitle": "Manager",
    "specialNeeds": false,
    "dateCreated": 1428424375617,
    "knownAs": "",
    "company": "",
    "id": 9,
    "department": "",
    "fax": "",
    "costCenter2": "Mkt Team 1",
    "email": "test@test.com",
    "floorWarden": false,
    "comments": "",
    "costCenter": {},
    "mobile": "",
    "employeeId": "",
    "userName": "moperator",
    "room": {},
    "dateUpdated": 1435870455727,
    "firstName": "Mark",
    "phone": "",
    "name": "Mark Operator",
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    }
  },
  {
    "costCenter1": "First Floor",
    "lastName": "Admin",
    "extension": "",
    "color": "#dd81f4",
    "jobTitle": "Administrator",
    "specialNeeds": false,
    "dateCreated": 1428423879367,
    "knownAs": "",
    "company": "",
    "id": 7,
    "department": "",
    "fax": "",
    "costCenter2": "Edit Team 1",
    "email": "test@test.com",
    "floorWarden": false,
    "comments": "",
    "costCenter": {},
    "mobile": "",
    "employeeId": "",
    "userName": "madmin",
    "dateUpdated": 1440688251423,
    "firstName": "Mark",
    "phone": "",
    "name": "Mark Admin",
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    }
  }
]

Get the users assigned to any Item
GET/categories/items/users

Example URI

GET /categories/items/users
Response  200
HideShow
Body
[
  {
    "floorWarden": false,
    "costCenter1": "First Floor",
    "lastName": "Silverman",
    "color": "#a5c7f7",
    "costCenter": {},
    "userName": "ssilverman",
    "specialNeeds": false,
    "room": {},
    "dateUpdated": 1435585164033,
    "firstName": "Sarah",
    "dateCreated": 1435585128170,
    "name": "Sarah Silverman",
    "id": 11,
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    },
    "costCenter2": "Edit Team 1",
    "email": "test@test.com"
  },
  {
    "costCenter1": "First Floor",
    "lastName": "Operator",
    "extension": "",
    "color": "#8b80f2",
    "jobTitle": "Manager",
    "specialNeeds": false,
    "dateCreated": 1428424375617,
    "knownAs": "",
    "company": "",
    "id": 9,
    "department": "",
    "fax": "",
    "costCenter2": "Mkt Team 1",
    "email": "test@test.com",
    "floorWarden": false,
    "comments": "",
    "costCenter": {},
    "mobile": "",
    "employeeId": "",
    "userName": "moperator",
    "room": {},
    "dateUpdated": 1435870455727,
    "firstName": "Mark",
    "phone": "",
    "name": "Mark Operator",
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    }
  },
  {
    "costCenter1": "First Floor",
    "lastName": "Admin",
    "extension": "",
    "color": "#dd81f4",
    "jobTitle": "Administrator",
    "specialNeeds": false,
    "dateCreated": 1428423879367,
    "knownAs": "",
    "company": "",
    "id": 7,
    "department": "",
    "fax": "",
    "costCenter2": "Edit Team 1",
    "email": "test@test.com",
    "floorWarden": false,
    "comments": "",
    "costCenter": {},
    "mobile": "",
    "employeeId": "",
    "userName": "madmin",
    "dateUpdated": 1440688251423,
    "firstName": "Mark",
    "phone": "",
    "name": "Mark Admin",
    "userType": {
      "dateCreated": 1430925761040,
      "name": "Employee",
      "id": 1,
      "fields": [],
      "dateUpdated": 1437164292987
    }
  }
]

Get the rooms assigned to a specific Item
GET/categories/items/{id}/rooms

Example URI

GET /categories/items/id/rooms
URI Parameters
HideShow
id
string (required) 

ID of the Item

Response  200
HideShow
Body
[
  {
    "reservable": true,
    "name": "03-355",
    "id": 51,
    "floor": {
      "area": 0,
      "name": "Floor1",
      "id": 1,
      "building": {
        "address": {
          "country": {},
          "city": "Houston",
          "street": "",
          "postalCode": "",
          "state": {
            "country": {},
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "code": "BLDG1",
        "metric": false,
        "name": "Building1",
        "id": 43
      }
    }
  },
  {
    "reservable": true,
    "name": "03-354",
    "id": 52,
    "floor": {
      "area": 0,
      "name": "Floor1",
      "id": 1,
      "building": {
        "address": {
          "country": {},
          "city": "Houston",
          "street": "",
          "postalCode": "",
          "state": {
            "country": {},
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "code": "BLDG1",
        "metric": false,
        "name": "Building1",
        "id": 43
      }
    }
  }
]

Get the rooms assigned to any Item
GET/rooms

Example URI

GET /rooms
Response  200
HideShow
Body
[
  {
    "reservable": true,
    "name": "03-355",
    "id": 51,
    "floor": {
      "area": 0,
      "name": "Floor1",
      "id": 1,
      "building": {
        "address": {
          "country": {},
          "city": "Houston",
          "street": "",
          "postalCode": "",
          "state": {
            "country": {},
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "code": "BLDG1",
        "metric": false,
        "name": "Building1",
        "id": 43
      }
    }
  },
  {
    "reservable": true,
    "name": "03-354",
    "id": 52,
    "floor": {
      "area": 0,
      "name": "Floor1",
      "id": 1,
      "building": {
        "address": {
          "country": {},
          "city": "Houston",
          "street": "",
          "postalCode": "",
          "state": {
            "country": {},
            "defaultSelected": false,
            "code": "TX",
            "name": "Texas",
            "id": 61,
            "categoryName": "state"
          }
        },
        "code": "BLDG1",
        "metric": false,
        "name": "Building1",
        "id": 43
      }
    }
  }
]

Category

Category related resources of iOffice API

Category Collection

Collection of all Categories.

List of all Categories
GET/categories{?modifiedOrCreatedAfter}

Example URI

GET /categories?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Category Collection resource

Headers
Content-Type: application/json
Body
[
    {
        "code": "co",
        "color": {},
        "name": "Company",
        "id": 27,
        "dateUpdated": 143567975913
    },
    {
        "code": "fpp",
        "color": {},
        "name": "Film Production",
        "id": 28
        "dateUpdated": 143567975913
    },
    {
        "code": "mv",
        "color": {},
        "name": "Movie",
        "id": 29
        "dateUpdated": 143567975913
    } 
]

Category Details While Adding Rule
GET/categories/type/{categoryTypeId}/{?limit,selector}

This API returns category details while adding new rule (after clicking on ‘Add Rule’ button)

Example URI

GET /categories/type/1/?limit=79&selector=itemCount%2Cdepths
URI Parameters
HideShow
categoryTypeId
number (optional) Example: 1

Category Type Id

limit
number (optional) Example: 79

Reservations List limit to query from

selector
string (required) Example: itemCount%2Cdepths

Selector ID (returns exact response with ‘itemCount%2Cdepths’)

Response  200
HideShow
Body
[
      {
          "depths": [
              {
                  "name": "Region",
                  "id": 44
              },
              {
                  "name": "Division",
                  "id": 90
              },
              {
                  "name": "Country",
                  "id": 46
              },
              {
                  "name": "Sub-Region",
                  "id": 45
              }
          ],
          "name": "_",
          "id": 17,
          "itemCount": 15
      },
      {
          "depths": [
              {
                  "name": "Day",
                  "id": 646
              },
              {
                  "name": "Month",
                  "id": 644
              },
              {
                  "name": "Week",
                  "id": 645
              }
          ],
          "name": "April_20",
          "id": 445,
          "itemCount": 2
      },        
      ...
  ]

Cost Center Category

A Single Depth object.

Retrieve a single Category
GET/categories/{id}

Example URI

GET /categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

Response  200
HideShow

JSON representation of the Category Resource

Headers
Content-Type: application/json
Body
{
        "code": "co",
        "color": {},
        "name": "Company",
        "id": 27,
        "dateUpdated": 143567975913
    },

Create a Category
POST/categories/

The following attributes are required to create a Category

Example URI

POST /categories/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "new category",
  "code": "new category code"
}
Response  200
HideShow
Body
{
  "id": 28,
  "name": "new category",
  "color": {},
  "code": "new category code",
  "dateCreated": 1434561059383
}

Edit a Category
PUT/categories/{id}

To update a Category send JSON with the Category’s ID and updated value for one or more of the attributes.

Example URI

PUT /categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 28,
  "name": "a new name",
  "code": "a new code"
}
Response  200
HideShow
Body
{
  "id": 28,
  "color": {},
  "name": "a new name",
  "code": "a new code",
  "dateCreated": 1434561059383,
  "dateUpdated": 1435679209637
}

Remove a Category
DELETE/categories/{id}

Example URI

DELETE /categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Category Depth

Category Depth related resources of iOffice API

Depth Collection

Collection of all Depths.

List of all Depths
GET/categories/depths{?modifiedOrCreatedAfter}

Example URI

GET /categories/depths?modifiedOrCreatedAfter=1549319834
URI Parameters
HideShow
modifiedOrCreatedAfter
number (optional) Example: 1549319834

Epoch time (milliseconds) to poll recently modified items in the collection.

Response  200
HideShow

JSON representation of the Depth Collection Resource

Headers
Content-Type: application/json
Body
[
    {
        "code": "d1",
        "dateCreated": 1439399515923,
        "level": 0,
        "name": "depth one",
        "id": 71,
        "category": {
            "code": "cat-code",
            "color": {},
            "name": "category one",
            "id": "65"
        }
    },
    {
        "code": "d2",
        "dateCreated": 1439399567183,
        "level": 0,
        "name": "depth2",
        "id": 72
        "category": {
            "code": "cat-two",
            "color": {},
            "name": "category two",
            "id": "65"
        }
    },
    {
        "code": "d3",
        "dateCreated": 1439399627200,
        "level": 1,
        "name": "depth3",
        "id": 73
        "category": {
            "code": "cat-code",
            "color": {},
            "name": "category one",
            "id": "65"
        }
    } 
]

Depth

A Single Depth object.

Retrieve a Single Depth
GET/categories/depth/{id}

Example URI

GET /categories/depth/id
URI Parameters
HideShow
id
string (required) 

ID of the Depth

Response  200
HideShow

JSON representation of the Depth Resource

Headers
Content-Type: application/json
Body
{
  "code": "d1",
  "dateCreated": 1439399515923,
  "level": 0,
  "name": "depth one",
  "id": 71,
  "category": {
    "code": "cat-code",
    "color": {},
    "name": "category one",
    "id": "65"
  }
}

Create a Depth
POST/categories/depth/

The following attributes are required to create a Depth:

Example URI

POST /categories/depth/
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "new depth",
  "code": "new-depth-code",
  "level": 3,
  "category": {
    "id": 65
  }
}
Response  200
HideShow
Body
{
  "id": 23,
  "name": "new depth",
  "code": "new-depth-code",
  "category": {
    "code": "cat-code",
    "color": {},
    "name": "category one",
    "id": "65"
  },
  "dateCreated": 1434561059383
}

Edit a Depth
PUT/categories/depths/{id}

To update a Depth send JSON with the Depth’s ID and updated value for one or more of the attributes.

Example URI

PUT /categories/depths/id
URI Parameters
HideShow
id
string (required) 

ID of the Depth

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 23,
  "name": "a Different name",
  "code": "a-diff-code"
}
Response  200
HideShow
Body
{
  "id": 23,
  "name": "a different name",
  "code": "a-diff-code",
  "category": {
    "code": "cat-code",
    "color": {},
    "name": "category one",
    "id": "65"
  },
  "dateUpdated": 143567975913,
  "dateCreated": 1434561059383
}

Remove a Depth
DELETE/categories/depth/{id}

Example URI

DELETE /categories/depth/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Space

Hierarchy

Hierarchy related resources of iOffice API

Add New Hierarchy
POST/categories

Example URI

POST /categories
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "AddOn1",
  "categoryType": [
    {
      "id": 3
    }
  ]
}
Response  201
HideShow
Body
{
  "dateCreated": 1669805101765,
  "color": {},
  "name": "AddOn1",
  "id": 486
}

Update Hierarchy
PUT/categories

Example URI

PUT /categories
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "id": 493,
  "name": "NEWHIERARCHIMAINLEVEL"
}
Response  200
HideShow
Body
{
  "dateCreated": 1669836751583,
  "color": {},
  "name": "NEWHIERARCHIMAINLEVEL",
  "id": 493,
  "dateUpdated": 1669815993488
}

Delete Hierarchy
DELETE/categories/{id}

Example URI

DELETE /categories/id
URI Parameters
HideShow
id
string (required) 

ID of the Category

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Retrieve Hierarchy Types
GET/categories/type/{id}

Example URI

GET /categories/type/3
URI Parameters
HideShow
id
int (required) Example: 3

ID of the Category Type

Response  200
HideShow
Body
[
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Country",
        "id": 46,
        "category": {
          "name": "_",
          "id": 17
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Region",
        "id": 44,
        "category": {
          "name": "_",
          "id": 17
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Division",
        "id": 90,
        "category": {
          "name": "_",
          "id": 17
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Sub-Region",
        "id": 45,
        "category": {
          "name": "_",
          "id": 17
        },
        "fields": []
      }
    ],
    "name": "_",
    "id": 17
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Hierarchy Level",
        "id": 529,
        "category": {
          "name": "0001 super",
          "id": 355
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 321,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 322,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom06",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom06",
            "id": 323,
            "type": "input",
            "baseField": {
              "code": "custom06",
              "name": "Custom06",
              "id": 406
            }
          },
          {
            "displayType": "Input",
            "code": "custom07",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom07",
            "id": 324,
            "type": "input",
            "baseField": {
              "code": "custom07",
              "name": "Custom07",
              "id": 407
            }
          },
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 325,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "SUP-01",
        "level": 2,
        "name": "super-duper",
        "id": 642,
        "category": {
          "name": "0001 super",
          "id": 355
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "DUP",
        "level": 0,
        "name": "0001-01-super",
        "id": 440,
        "category": {
          "name": "0001 super",
          "id": 355
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 327,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 328,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 329,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 330,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom06",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom06",
            "id": 331,
            "type": "input",
            "baseField": {
              "code": "custom06",
              "name": "Custom06",
              "id": 406
            }
          },
          {
            "displayType": "Input",
            "code": "custom07",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom07",
            "id": 332,
            "type": "input",
            "baseField": {
              "code": "custom07",
              "name": "Custom07",
              "id": 407
            }
          },
          {
            "displayType": "Input",
            "code": "custom10",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom10",
            "id": 333,
            "type": "input",
            "baseField": {
              "code": "custom10",
              "name": "Custom10",
              "id": 410
            }
          },
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 334,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 326,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      }
    ],
    "name": "0001 super",
    "id": 355
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Level 1",
        "id": 694,
        "category": {
          "name": "a1",
          "id": 472
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level 2",
        "id": 695,
        "category": {
          "name": "a1",
          "id": 472
        },
        "fields": []
      }
    ],
    "name": "a1",
    "id": 472
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 696,
        "category": {
          "name": "a2",
          "id": 473
        },
        "fields": []
      }
    ],
    "name": "a2",
    "id": 473
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Hierarchy 1",
        "id": 697,
        "category": {
          "name": "A3",
          "id": 474
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Hierarchy 2",
        "id": 698,
        "category": {
          "name": "A3",
          "id": 474
        },
        "fields": []
      }
    ],
    "name": "A3",
    "id": 474
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 663,
        "category": {
          "name": "Ahead2",
          "id": 454
        },
        "fields": []
      }
    ],
    "name": "Ahead2",
    "id": 454
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 664,
        "category": {
          "name": "Ahead3",
          "id": 455
        },
        "fields": []
      }
    ],
    "name": "Ahead3",
    "id": 455
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 665,
        "category": {
          "name": "Ahead3",
          "id": 456
        },
        "fields": []
      }
    ],
    "name": "Ahead3",
    "id": 456
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 450,
        "category": {
          "name": "Alan H Tesitng",
          "id": 359
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 458,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 459,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 455,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom09",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom09",
            "id": 456,
            "type": "input",
            "baseField": {
              "code": "custom09",
              "name": "Custom09",
              "id": 409
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 457,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Unnamed Hierarchy Level 1",
        "id": 451,
        "category": {
          "name": "Alan H Tesitng",
          "id": 359
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 478,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 479,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 476,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 477,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Hierarchy Level.2",
        "id": 452,
        "category": {
          "name": "Alan H Tesitng",
          "id": 359
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 475,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 472,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom08",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom08",
            "id": 473,
            "type": "input",
            "baseField": {
              "code": "custom08",
              "name": "Custom08",
              "id": 408
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 474,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      }
    ],
    "name": "Alan H Tesitng",
    "id": 359
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Day",
        "id": 646,
        "category": {
          "name": "April_20",
          "id": 445
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Week",
        "id": 645,
        "category": {
          "name": "April_20",
          "id": 445
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Month",
        "id": 644,
        "category": {
          "name": "April_20",
          "id": 445
        },
        "fields": []
      }
    ],
    "name": "April_20",
    "id": 445
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Level 1",
        "id": 649,
        "category": {
          "name": "April21",
          "id": 447
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level 2",
        "id": 650,
        "category": {
          "name": "April21",
          "id": 447
        },
        "fields": []
      }
    ],
    "name": "April21",
    "id": 447
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "space.Unnamed_Hierarchy_Level",
        "id": 408,
        "category": {
          "name": "c_updatess",
          "id": 336
        },
        "fields": []
      }
    ],
    "name": "c_updatess",
    "id": 336
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Level 3",
        "id": 420,
        "category": {
          "name": "Campus",
          "id": 331
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 497,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 498,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 499,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 500,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom06",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom06",
            "id": 501,
            "type": "input",
            "baseField": {
              "code": "custom06",
              "name": "Custom06",
              "id": 406
            }
          },
          {
            "displayType": "Input",
            "code": "custom07",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom07",
            "id": 502,
            "type": "input",
            "baseField": {
              "code": "custom07",
              "name": "Custom07",
              "id": 407
            }
          },
          {
            "displayType": "Input",
            "code": "custom08",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom08",
            "id": 503,
            "type": "input",
            "baseField": {
              "code": "custom08",
              "name": "Custom08",
              "id": 408
            }
          },
          {
            "displayType": "Input",
            "code": "custom09",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom09",
            "id": 504,
            "type": "input",
            "baseField": {
              "code": "custom09",
              "name": "Custom09",
              "id": 409
            }
          },
          {
            "displayType": "Input",
            "code": "custom10",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom10",
            "id": 505,
            "type": "input",
            "baseField": {
              "code": "custom10",
              "name": "Custom10",
              "id": 410
            }
          },
          {
            "displayType": "Input",
            "code": "custom11",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom11",
            "id": 506,
            "type": "input",
            "baseField": {
              "code": "custom11",
              "name": "Custom11",
              "id": 411
            }
          },
          {
            "displayType": "Input",
            "code": "custom12",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom12",
            "id": 507,
            "type": "input",
            "baseField": {
              "code": "custom12",
              "name": "Custom12",
              "id": 412
            }
          },
          {
            "displayType": "Input",
            "code": "custom13",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom13",
            "id": 508,
            "type": "input",
            "baseField": {
              "code": "custom13",
              "name": "Custom13",
              "id": 413
            }
          },
          {
            "displayType": "Input",
            "code": "custom14",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom14",
            "id": 509,
            "type": "input",
            "baseField": {
              "code": "custom14",
              "name": "Custom14",
              "id": 414
            }
          },
          {
            "displayType": "Input",
            "code": "custom15",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom15",
            "id": 510,
            "type": "input",
            "baseField": {
              "code": "custom15",
              "name": "Custom15",
              "id": 415
            }
          },
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 511,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 512,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Level 2",
        "id": 419,
        "category": {
          "name": "Campus",
          "id": 331
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 495,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 496,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Campus",
        "id": 403,
        "category": {
          "name": "Campus",
          "id": 331
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 143,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 144,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 145,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 146,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom06",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom06",
            "id": 147,
            "type": "input",
            "baseField": {
              "code": "custom06",
              "name": "Custom06",
              "id": 406
            }
          },
          {
            "displayType": "Input",
            "code": "custom07",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom07",
            "id": 148,
            "type": "input",
            "baseField": {
              "code": "custom07",
              "name": "Custom07",
              "id": 407
            }
          },
          {
            "displayType": "Input",
            "code": "custom08",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom08",
            "id": 149,
            "type": "input",
            "baseField": {
              "code": "custom08",
              "name": "Custom08",
              "id": 408
            }
          },
          {
            "displayType": "Input",
            "code": "custom09",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom09",
            "id": 150,
            "type": "input",
            "baseField": {
              "code": "custom09",
              "name": "Custom09",
              "id": 409
            }
          },
          {
            "displayType": "Input",
            "code": "custom10",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom10",
            "id": 151,
            "type": "input",
            "baseField": {
              "code": "custom10",
              "name": "Custom10",
              "id": 410
            }
          },
          {
            "displayType": "Input",
            "code": "custom11",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom11",
            "id": 152,
            "type": "input",
            "baseField": {
              "code": "custom11",
              "name": "Custom11",
              "id": 411
            }
          },
          {
            "displayType": "Input",
            "code": "custom12",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom12",
            "id": 153,
            "type": "input",
            "baseField": {
              "code": "custom12",
              "name": "Custom12",
              "id": 412
            }
          },
          {
            "displayType": "Input",
            "code": "custom13",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom13",
            "id": 154,
            "type": "input",
            "baseField": {
              "code": "custom13",
              "name": "Custom13",
              "id": 413
            }
          },
          {
            "displayType": "Input",
            "code": "custom14",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom14",
            "id": 155,
            "type": "input",
            "baseField": {
              "code": "custom14",
              "name": "Custom14",
              "id": 414
            }
          },
          {
            "displayType": "Input",
            "code": "custom15",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom15",
            "id": 156,
            "type": "input",
            "baseField": {
              "code": "custom15",
              "name": "Custom15",
              "id": 415
            }
          },
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 157,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 142,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level 1",
        "id": 418,
        "category": {
          "name": "Campus",
          "id": 331
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 493,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 494,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      }
    ],
    "name": "Campus",
    "id": 331
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Region",
        "id": 92,
        "category": {
          "name": "Company",
          "id": 58
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 23,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 22,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Parent Company",
        "id": 91,
        "category": {
          "name": "Company",
          "id": 58
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 35,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 34,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Campus",
        "id": 421,
        "category": {
          "name": "Company",
          "id": 58
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 25,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 24,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "DIV",
        "level": 2,
        "name": "Division",
        "id": 105,
        "category": {
          "name": "Company",
          "id": 58
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 21,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 20,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 4,
        "name": "Faculty",
        "id": 445,
        "category": {
          "name": "Company",
          "id": 58
        },
        "fields": []
      }
    ],
    "name": "Company",
    "id": 58
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Hierarchy Level2",
        "id": 654,
        "category": {
          "name": "demo2",
          "id": 449
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level1",
        "id": 653,
        "category": {
          "name": "demo2",
          "id": 449
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Unnamed Hierarchy Level3",
        "id": 655,
        "category": {
          "name": "demo2",
          "id": 449
        },
        "fields": []
      }
    ],
    "name": "demo2",
    "id": 449
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Parent Level Fri Dec 10",
        "id": 598,
        "category": {
          "name": "Fri Dec 10",
          "id": 432
        },
        "fields": []
      }
    ],
    "name": "Fri Dec 10",
    "id": 432
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Specialty",
        "id": 402,
        "category": {
          "name": "Function",
          "id": 330
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Function",
        "id": 401,
        "category": {
          "name": "Function",
          "id": 330
        },
        "fields": []
      }
    ],
    "name": "Function",
    "id": 330
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Child Level 1",
        "id": 561,
        "category": {
          "name": "IManage",
          "id": 409
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Parent Level1",
        "id": 559,
        "category": {
          "name": "IManage",
          "id": 409
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Grand child Level1",
        "id": 562,
        "category": {
          "name": "IManage",
          "id": 409
        },
        "fields": []
      }
    ],
    "name": "IManage",
    "id": 409
  },
  {
    "code": "007",
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "8877",
        "level": 3,
        "name": "Depth II",
        "id": 632,
        "category": {
          "code": "007",
          "name": "Jasper Join Test",
          "id": 442
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "12345",
        "level": 1,
        "name": "Depth I",
        "id": 628,
        "category": {
          "code": "007",
          "name": "Jasper Join Test",
          "id": 442
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "8765",
        "level": 2,
        "name": "Depth II",
        "id": 631,
        "category": {
          "code": "007",
          "name": "Jasper Join Test",
          "id": 442
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "990",
        "level": 0,
        "name": "Jasper Join Test",
        "id": 627,
        "category": {
          "code": "007",
          "name": "Jasper Join Test",
          "id": 442
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "004",
        "level": 4,
        "name": "Depth 4",
        "id": 633,
        "category": {
          "code": "007",
          "name": "Jasper Join Test",
          "id": 442
        },
        "fields": []
      }
    ],
    "name": "Jasper Join Test",
    "id": 442
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Purple Hierarchy Level",
        "id": 439,
        "category": {
          "name": "JBen",
          "id": 354
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 262,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 263,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 261,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Red Hierarchy Level",
        "id": 503,
        "category": {
          "name": "JBen",
          "id": 354
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 264,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          },
          {
            "displayType": "Input",
            "code": "custom04",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom04",
            "id": 265,
            "type": "input",
            "baseField": {
              "code": "custom04",
              "name": "Custom04",
              "id": 404
            }
          }
        ]
      }
    ],
    "name": "JBen",
    "id": 354
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "State",
        "id": 447,
        "category": {
          "name": "Jessica 5/19 Testing",
          "id": 358
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 69,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Country",
        "id": 446,
        "category": {
          "name": "Jessica 5/19 Testing",
          "id": 358
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 68,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Subdivision",
        "id": 616,
        "category": {
          "name": "Jessica 5/19 Testing",
          "id": 358
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "City",
        "id": 448,
        "category": {
          "name": "Jessica 5/19 Testing",
          "id": 358
        },
        "fields": []
      }
    ],
    "name": "Jessica 5/19 Testing",
    "id": 358
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 4,
        "name": "Unnamed Hierarchy Level",
        "id": 458,
        "category": {
          "name": "Jessica 5/26 Testing",
          "id": 360
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 205,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom07",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom07",
            "id": 206,
            "type": "input",
            "baseField": {
              "code": "custom07",
              "name": "Custom07",
              "id": 407
            }
          },
          {
            "displayType": "Input",
            "code": "custom08",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom08",
            "id": 207,
            "type": "input",
            "baseField": {
              "code": "custom08",
              "name": "Custom08",
              "id": 408
            }
          },
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 204,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Country",
        "id": 453,
        "category": {
          "name": "Jessica 5/26 Testing",
          "id": 360
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 211,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom05",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom05",
            "id": 212,
            "type": "input",
            "baseField": {
              "code": "custom05",
              "name": "Custom05",
              "id": 405
            }
          },
          {
            "displayType": "Input",
            "code": "custom06",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom06",
            "id": 213,
            "type": "input",
            "baseField": {
              "code": "custom06",
              "name": "Custom06",
              "id": 406
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "City",
        "id": 455,
        "category": {
          "name": "Jessica 5/26 Testing",
          "id": 360
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Unnamed Hierarchy Level",
        "id": 457,
        "category": {
          "name": "Jessica 5/26 Testing",
          "id": 360
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "State",
        "id": 454,
        "category": {
          "name": "Jessica 5/26 Testing",
          "id": 360
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 71,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      }
    ],
    "name": "Jessica 5/26 Testing",
    "id": 360
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 4,
        "name": "Unnamed Hierarchy Test",
        "id": 442,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Global Region",
        "id": 438,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Test Level",
        "id": 449,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 5,
        "name": "City",
        "id": 427,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Country-",
        "id": 425,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "State",
        "id": 426,
        "category": {
          "name": "Jessica's New Hierarchy",
          "id": 348
        },
        "fields": []
      }
    ],
    "name": "Jessica's New Hierarchy",
    "id": 348
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level 2",
        "id": 652,
        "category": {
          "name": "May22",
          "id": 448
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Level 1",
        "id": 651,
        "category": {
          "name": "May22",
          "id": 448
        },
        "fields": []
      }
    ],
    "name": "May22",
    "id": 448
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "State",
        "id": 570,
        "category": {
          "name": "My Portfolio",
          "id": 414
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Country",
        "id": 569,
        "category": {
          "name": "My Portfolio",
          "id": 414
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "City",
        "id": 572,
        "category": {
          "name": "My Portfolio",
          "id": 414
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 480,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "County",
        "id": 571,
        "category": {
          "name": "My Portfolio",
          "id": 414
        },
        "fields": []
      }
    ],
    "name": "My Portfolio",
    "id": 414
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 661,
        "category": {
          "name": "name1",
          "id": 452
        },
        "fields": []
      }
    ],
    "name": "name1",
    "id": 452
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 662,
        "category": {
          "name": "name2",
          "id": 453
        },
        "fields": []
      }
    ],
    "name": "name2",
    "id": 453
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 674,
        "category": {
          "name": "New one1",
          "id": 460
        },
        "fields": []
      }
    ],
    "name": "New one1",
    "id": 460
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Hierarchy Level2",
        "id": 703,
        "category": {
          "name": "Nov23",
          "id": 477
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level 1",
        "id": 702,
        "category": {
          "name": "Nov23",
          "id": 477
        },
        "fields": []
      }
    ],
    "name": "Nov23",
    "id": 477
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 688,
        "category": {
          "name": "OCt",
          "id": 467
        },
        "fields": []
      }
    ],
    "name": "OCt",
    "id": 467
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "First",
        "id": 681,
        "category": {
          "name": "Oct21",
          "id": 463
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Thrid",
        "id": 683,
        "category": {
          "name": "Oct21",
          "id": 463
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Second",
        "id": 682,
        "category": {
          "name": "Oct21",
          "id": 463
        },
        "fields": []
      }
    ],
    "name": "Oct21",
    "id": 463
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Level 1",
        "id": 684,
        "category": {
          "name": "Oct25",
          "id": 464
        },
        "fields": []
      }
    ],
    "name": "Oct25",
    "id": 464
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 686,
        "category": {
          "name": "OCt25-2",
          "id": 465
        },
        "fields": []
      }
    ],
    "name": "OCt25-2",
    "id": 465
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 687,
        "category": {
          "name": "Oct25-3",
          "id": 466
        },
        "fields": []
      }
    ],
    "name": "Oct25-3",
    "id": 466
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level 1",
        "id": 689,
        "category": {
          "name": "Oct25-4",
          "id": 468
        },
        "fields": []
      }
    ],
    "name": "Oct25-4",
    "id": 468
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 690,
        "category": {
          "name": "OCT26",
          "id": 469
        },
        "fields": []
      }
    ],
    "name": "OCT26",
    "id": 469
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Unnamed Hierarchy Level",
        "id": 692,
        "category": {
          "name": "oct26-2",
          "id": 470
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 691,
        "category": {
          "name": "oct26-2",
          "id": 470
        },
        "fields": []
      }
    ],
    "name": "oct26-2",
    "id": 470
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 564,
        "category": {
          "name": "Presentation ",
          "id": 411
        },
        "fields": []
      }
    ],
    "name": "Presentation ",
    "id": 411
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "City_5555555",
        "id": 705,
        "category": {
          "name": "PT_1111111",
          "id": 478
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "State_5555555",
        "id": 704,
        "category": {
          "name": "PT_1111111",
          "id": 478
        },
        "fields": []
      }
    ],
    "name": "PT_1111111",
    "id": 478
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy",
        "id": 693,
        "category": {
          "name": "Q",
          "id": 471
        },
        "fields": []
      }
    ],
    "name": "Q",
    "id": 471
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "QA Join Test",
        "id": 622,
        "category": {
          "name": "QA Join Test",
          "id": 440
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Depth III",
        "id": 625,
        "category": {
          "name": "QA Join Test",
          "id": 440
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Depth I",
        "id": 623,
        "category": {
          "name": "QA Join Test",
          "id": 440
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Depth II",
        "id": 624,
        "category": {
          "name": "QA Join Test",
          "id": 440
        },
        "fields": []
      }
    ],
    "name": "QA Join Test",
    "id": 440
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "RB Hierarchy Level 1",
        "id": 554,
        "category": {
          "name": "Rainbow hierarchy",
          "id": 408
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 4,
        "name": "RB Level 5",
        "id": 558,
        "category": {
          "name": "Rainbow hierarchy",
          "id": 408
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "RB Level 3",
        "id": 556,
        "category": {
          "name": "Rainbow hierarchy",
          "id": 408
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "RB Level 4",
        "id": 557,
        "category": {
          "name": "Rainbow hierarchy",
          "id": 408
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "RB Level 2",
        "id": 555,
        "category": {
          "name": "Rainbow hierarchy",
          "id": 408
        },
        "fields": []
      }
    ],
    "name": "Rainbow hierarchy",
    "id": 408
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Sab Level 3 new",
        "id": 472,
        "category": {
          "name": "Sabera's test Heirarchy",
          "id": 364
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 271,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Sab level 1 new",
        "id": 468,
        "category": {
          "name": "Sabera's test Heirarchy",
          "id": 364
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom01",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Hello",
            "id": 266,
            "type": "input",
            "baseField": {
              "code": "custom01",
              "name": "Hello",
              "id": 401
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Sab Level 2 new",
        "id": 469,
        "category": {
          "name": "Sabera's test Heirarchy",
          "id": 364
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "custom02",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom02",
            "id": 481,
            "type": "input",
            "baseField": {
              "code": "custom02",
              "name": "Custom02",
              "id": 402
            }
          },
          {
            "displayType": "Input",
            "code": "custom03",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Custom03",
            "id": 482,
            "type": "input",
            "baseField": {
              "code": "custom03",
              "name": "Custom03",
              "id": 403
            }
          }
        ]
      }
    ],
    "name": "Sabera's test Heirarchy",
    "id": 364
  },
  {
    "code": "STC",
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Floor",
        "id": 637,
        "category": {
          "code": "STC",
          "name": "Sergeo Test Category",
          "id": 443
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 3,
        "name": "Space",
        "id": 638,
        "category": {
          "code": "STC",
          "name": "Sergeo Test Category",
          "id": 443
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level",
        "id": 643,
        "category": {
          "code": "STC",
          "name": "Sergeo Test Category",
          "id": 443
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "code": "STC",
        "level": 0,
        "name": "Sergeo Test Category",
        "id": 634,
        "category": {
          "code": "STC",
          "name": "Sergeo Test Category",
          "id": 443
        },
        "fields": []
      }
    ],
    "name": "Sergeo Test Category",
    "id": 443
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "State",
        "id": 524,
        "category": {
          "name": "Site Location",
          "id": 398
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Country",
        "id": 523,
        "category": {
          "name": "Site Location",
          "id": 398
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 273,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "City",
        "id": 525,
        "category": {
          "name": "Site Location",
          "id": 398
        },
        "fields": []
      }
    ],
    "name": "Site Location",
    "id": 398
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Unnamed Hierarchy Level",
        "id": 592,
        "category": {
          "name": "Snow White",
          "id": 429
        },
        "fields": []
      }
    ],
    "name": "Snow White",
    "id": 429
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Level 3",
        "id": 614,
        "category": {
          "name": "TEST",
          "id": 437
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 491,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Level 1",
        "id": 612,
        "category": {
          "name": "TEST",
          "id": 437
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 527,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Level 2",
        "id": 613,
        "category": {
          "name": "TEST",
          "id": 437
        },
        "fields": [
          {
            "displayType": "Input",
            "code": "description",
            "dataType": "TEXT",
            "options": "{\"password\":false,\"multiline\":false}",
            "name": "Description",
            "id": 492,
            "type": "input",
            "baseField": {
              "code": "description",
              "name": "Description",
              "id": 395
            }
          }
        ]
      }
    ],
    "name": "TEST",
    "id": 437
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "Parent Level",
        "id": 550,
        "category": {
          "name": "Test",
          "id": 406
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "Grand Child Level",
        "id": 563,
        "category": {
          "name": "Test",
          "id": 406
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "Child Level",
        "id": 551,
        "category": {
          "name": "Test",
          "id": 406
        },
        "fields": []
      }
    ],
    "name": "Test",
    "id": 406
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "test desktop categories",
        "id": 576,
        "category": {
          "name": "test desktop categories",
          "id": 416
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "new depth",
        "id": 577,
        "category": {
          "name": "test desktop categories",
          "id": 416
        },
        "fields": []
      }
    ],
    "name": "test desktop categories",
    "id": 416
  },
  {
    "depths": [
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 0,
        "name": "top",
        "id": 706,
        "category": {
          "name": "Test Tree",
          "id": 479
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 1,
        "name": "middle",
        "id": 707,
        "category": {
          "name": "Test Tree",
          "id": 479
        },
        "fields": []
      },
      {
        "availableFields": [
          {
            "code": "custom02",
            "name": "Custom02",
            "id": 402
          },
          {
            "code": "custom03",
            "name": "Custom03",
            "id": 403
          },
          {
            "code": "custom04",
            "name": "Custom04",
            "id": 404
          },
          {
            "code": "custom05",
            "name": "Custom05",
            "id": 405
          },
          {
            "code": "custom06",
            "name": "Custom06",
            "id": 406
          },
          {
            "code": "custom07",
            "name": "Custom07",
            "id": 407
          },
          {
            "code": "custom08",
            "name": "Custom08",
            "id": 408
          },
          {
            "code": "custom09",
            "name": "Custom09",
            "id": 409
          },
          {
            "code": "custom10",
            "name": "Custom10",
            "id": 410
          },
          {
            "code": "custom11",
            "name": "Custom11",
            "id": 411
          },
          {
            "code": "custom12",
            "name": "Custom12",
            "id": 412
          },
          {
            "code": "custom13",
            "name": "Custom13",
            "id": 413
          },
          {
            "code": "custom14",
            "name": "Custom14",
            "id": 414
          },
          {
            "code": "custom15",
            "name": "Custom15",
            "id": 415
          },
          {
            "code": "description",
            "name": "Description",
            "id": 395
          },
          {
            "code": "custom01",
            "name": "Hello",
            "id": 401
          }
        ],
        "level": 2,
        "name": "bottom",
        "id": 708,
        "category": {
          "name": "Test Tree",
          "id": 479
        },
        "fields": []
      }
    ],
    "name": "Test Tree",
    "id": 479
  }
]

Retrieve Spaces based on Hierarchy
GET/categories/items

Example URI

GET /categories/items
URI Parameters
HideShow
category
int (required) Example: 331
root
boolean (required) Example: true
Response  200
HideShow
Body
[
  {
    "depth": {
      "level": 0,
      "name": "Campus",
      "id": 403
    },
    "name": "Houston Campus",
    "childCount": 1,
    "id": 1280,
    "category": {
      "depths": [
        {
          "level": 0,
          "name": "Campus",
          "id": 403
        },
        {
          "level": 2,
          "name": "Level 2",
          "id": 419
        },
        {
          "level": 3,
          "name": "Level 3",
          "id": 420
        },
        {
          "level": 1,
          "name": "Level 1",
          "id": 418
        }
      ],
      "name": "Campus",
      "id": 331
    },
    "parents": []
  },
  {
    "code": "AC1 - Code",
    "depth": {
      "level": 0,
      "name": "Campus",
      "id": 403
    },
    "name": "Austin Campus - Name",
    "childCount": 2,
    "id": 1281,
    "category": {
      "depths": [
        {
          "level": 0,
          "name": "Campus",
          "id": 403
        },
        {
          "level": 2,
          "name": "Level 2",
          "id": 419
        },
        {
          "level": 3,
          "name": "Level 3",
          "id": 420
        },
        {
          "level": 1,
          "name": "Level 1",
          "id": 418
        }
      ],
      "name": "Campus",
      "id": 331
    },
    "parents": []
  },
  {
    "depth": {
      "level": 0,
      "name": "Campus",
      "id": 403
    },
    "name": "San Antonio Campus",
    "childCount": 0,
    "id": 1282,
    "category": {
      "depths": [
        {
          "level": 0,
          "name": "Campus",
          "id": 403
        },
        {
          "level": 2,
          "name": "Level 2",
          "id": 419
        },
        {
          "level": 3,
          "name": "Level 3",
          "id": 420
        },
        {
          "level": 1,
          "name": "Level 1",
          "id": 418
        }
      ],
      "name": "Campus",
      "id": 331
    },
    "parents": []
  }
]

Level In Hierarchy

Level related resources of iOffice API

Add New Level In Hierarchy
POST/categories/depths

Example URI

POST /categories/depths
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "Unnamed Hierarchy Level",
  "category": {
    "id": 492
  },
  "level": 1
}
Response  201
HideShow
Body
{
  "dateCreated": 1669814609962,
  "level": 1,
  "name": "Unnamed Hierarchy Level",
  "id": 727,
  "category": {
    "dateCreated": 1669834292027,
    "color": {},
    "name": "TestAdd",
    "id": 492,
    "dateUpdated": 1669812693803
  }
}

Update Level In Hierarchy
PUT/categories/depths

Example URI

PUT /categories/depths
URI Parameters
HideShow
id
string (required) 

ID of the Level/Depth

Request
HideShow
Headers
Content-Type: application/json
Body
{
            "id":{id},
            "name":"Level1"
        }
Response  200
HideShow
Body
{
  "dateCreated": 1669815214240,
  "level": 1,
  "name": "UpdatedFromPMAN",
  "id": 730,
  "category": {
    "dateCreated": 1669836751583,
    "color": {},
    "name": "Newra",
    "id": 493,
    "dateUpdated": 1669815266397
  },
  "dateUpdated": 1669815401648
}

Delete Level In Hierarchy
DELETE/categories/depths/{id}

Example URI

DELETE /categories/depths/id
URI Parameters
HideShow
id
string (required) 

ID of the Level/Depth

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Space Types

Space Types related resources of iOffice API

Retrieve Space Types
GET/rooms/types

Example URI

GET /rooms/types
URI Parameters
HideShow
includeParking
boolean (required) Example: true

If true, query will include rooms with parking spaces

Response  200
HideShow
Body
[
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "5SW3.04",
    "id": 195,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": "ff"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Acc. WC",
    "id": 216,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "fffeb0",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "another type",
    "id": 170,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "8d55b0",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "AREA",
    "id": 52,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": "purple poop"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ATRIUM",
    "id": 97,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "f1bb6b",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ATTIC STORAGE",
    "id": 53,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "725eb6",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Building Common",
      "id": 18
    },
    "typeCode": ""
  },
  {
    "hexColor": "6595f8",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "BOARD ROOM",
    "id": 39,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "spaceTypeClassification": {
      "hexColor": "abe3ed",
      "superCategory": {
        "name": "Usable Area",
        "id": 3
      },
      "name": "Secondary Circulation",
      "id": 15
    },
    "typeCode": "Building Services - May be outside lease perimeter"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Booth",
    "id": 213,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "BREAK OUT RM",
    "id": 155,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "70605b",
      "superCategory": {
        "name": "Other Area",
        "id": 4
      },
      "name": "Building Projections",
      "id": 26
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "BREAK RM",
    "id": 141,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": ""
  },
  {
    "hexColor": "d6ead3",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 2,
    "name": "BREAKROOM",
    "id": 23,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": "001"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Building Service",
    "id": 105,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "d15d81",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "BUTLER'S PANTRY",
    "id": 28,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": "45454545454545454545454545454545454545454545454545"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Circulation",
    "id": 222,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CLASSROOM",
    "id": 66,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "f1bb6b",
      "superCategory": {
        "name": "Vertical Penetration",
        "id": 2
      },
      "name": "Building Core",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "f0a75d",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CLOSET",
    "id": 30,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": "1102"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COATS",
    "id": 156,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COFFEE",
    "id": 152,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COLLAB",
    "id": 134,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Collaboration Area",
    "id": 125,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "85bd7c",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COMMUNICATION",
    "id": 9,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": ""
  },
  {
    "hexColor": "75c5d9",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CONF",
    "id": 3,
    "spaceTypeGroup": {
      "hexColor": "fade6d",
      "roomTypes": [
        {
          "name": "CONF",
          "id": 3
        },
        {
          "name": "MULTI-PURPOSE ROOM",
          "id": 35
        },
        {
          "name": "CONFERENCE ROOM",
          "id": 38
        },
        {
          "name": "Vwilliams",
          "id": 171
        }
      ],
      "name": "We Spaces",
      "id": 3
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CONF RM",
    "id": 65,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "694a9f",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CONFERENCE",
    "id": 19,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "spaceTypeClassification": {
      "hexColor": "a55dbb",
      "superCategory": {
        "name": "Service Area",
        "id": 1
      },
      "name": "Base Building Circulation",
      "id": 21
    },
    "typeCode": ""
  },
  {
    "hexColor": "fdee80",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CONFERENCE ROOM",
    "id": 38,
    "spaceTypeGroup": {
      "hexColor": "fade6d",
      "roomTypes": [
        {
          "name": "CONF",
          "id": 3
        },
        {
          "name": "MULTI-PURPOSE ROOM",
          "id": 35
        },
        {
          "name": "CONFERENCE ROOM",
          "id": 38
        },
        {
          "name": "Vwilliams",
          "id": 171
        }
      ],
      "name": "We Spaces",
      "id": 3
    },
    "typeCode": ""
  },
  {
    "hexColor": "8bdefc",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Conference Room",
    "id": 79,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Convenience Copy Center",
    "id": 109,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COPIER ROOM",
    "id": 184,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": "dfdx"
  },
  {
    "hexColor": "cbedf4",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COPY",
    "id": 50,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COPY PRINT",
    "id": 138,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "d1f6d7",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "COPY/FAX",
    "id": 21,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CORE",
    "id": 64,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CORRIDOR",
    "id": 93,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "creating space",
    "id": 172,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "655652",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "CUBE",
    "id": 29,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Dedicated Meeting Room",
    "id": 102,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "f8e079",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "DINING ROOM",
    "id": 37,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEC",
    "id": 70,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEC RM",
    "id": 90,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEC. CL",
    "id": 148,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "85bd7c",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELECTRICAL",
    "id": 10,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": "c"
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEV",
    "id": 143,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEV EQUIP",
    "id": 139,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "eef6ee",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "ELEVATOR",
    "id": 48,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "bef7ad",
    "contentFlag": 1,
    "defaultRoomType": false,
    "cost": 0,
    "name": "Elevator Lobby",
    "id": 110,
    "spaceTypeGroup": {
      "hexColor": "cbcbcb",
      "roomTypes": [
        {
          "name": "KITCHEN",
          "id": 4
        },
        {
          "name": "FILE",
          "id": 5
        },
        {
          "name": "wkst",
          "id": 7
        },
        {
          "name": "PRINTER-FAX",
          "id": 8
        },
        {
          "name": "COMMUNICATION",
          "id": 9
        },
        {
          "name": "ELECTRICAL",
          "id": 10
        },
        {
          "name": "STORAGE",
          "id": 11
        },
        {
          "name": "PARKING SPACE",
          "id": 12
        },
        {
          "name": "LIBRARY",
          "id": 13
        },
        {
          "name": "MECHANICAL",
          "id": 14
        },
        {
          "name": "TRAINING",
          "id": 15
        },
        {
          "name": "SAFETY",
          "id": 16
        },
        {
          "name": "CONFERENCE",
          "id": 19
        },
        {
          "name": "HOTELING",
          "id": 20
        },
        {
          "name": "COPY/FAX",
          "id": 21
        },
        {
          "name": "MEETING ROOM",
          "id": 22
        },
        {
          "name": "BREAKROOM",
          "id": 23
        },
        {
          "name": "Huddle",
          "id": 24
        },
        {
          "name": "RESTROOM",
          "id": 27
        },
        {
          "name": "CUBE",
          "id": 29
        },
        {
          "name": "WAR ROOM",
          "id": 36
        },
        {
          "name": "BOARD ROOM",
          "id": 39
        },
        {
          "name": "CONF RM",
          "id": 65
        },
        {
          "name": "HUDDLE RM",
          "id": 75
        },
        {
          "name": "Conference Room",
          "id": 79
        },
        {
          "name": "Focus Room",
          "id": 80
        },
        {
          "name": "IDF Closet",
          "id": 81
        },
        {
          "name": "LAB",
          "id": 82
        },
        {
          "name": "Pantry/Vending/Breakroom",
          "id": 83
        },
        {
          "name": "Printer/Copy/Mail",
          "id": 84
        },
        {
          "name": "PRINT/COPY",
          "id": 87
        },
        {
          "name": "WOMENS",
          "id": 88
        },
        {
          "name": "MENS",
          "id": 91
        },
        {
          "name": "CORRIDOR",
          "id": 93
        },
        {
          "name": "ATRIUM",
          "id": 97
        },
        {
          "name": "Walk-up WKST",
          "id": 106
        },
        {
          "name": "Elevator Lobby",
          "id": 110
        },
        {
          "name": "Collaboration Area",
          "id": 125
        },
        {
          "name": "Mail/Print",
          "id": 129
        },
        {
          "name": "Jans",
          "id": 130
        },
        {
          "name": "Jans-Admin",
          "id": 131
        },
        {
          "name": "ID3 Reservable Space",
          "id": 157
        },
        {
          "name": "TESTKB",
          "id": 158
        },
        {
          "name": "Lounge",
          "id": 160
        },
        {
          "name": "Lounge 2",
          "id": 161
        },
        {
          "name": "Wine Cellar",
          "id": 162
        },
        {
          "name": "Testing2",
          "id": 164
        },
        {
          "name": "1123",
          "id": 166
        },
        {
          "name": "testing group",
          "id": 167
        },
        {
          "name": "Patrick Check!",
          "id": 169
        },
        {
          "name": "another type",
          "id": 170
        },
        {
          "name": "creating space",
          "id": 172
        },
        {
          "name": "SabPa",
          "id": 173
        },
        {
          "name": "Sab",
          "id": 174
        },
        {
          "name": "Sabr",
          "id": 175
        },
        {
          "name": "SabPantry",
          "id": 176
        },
        {
          "name": "SabPantry",
          "id": 177
        },
        {
          "name": "New Space Type",
          "id": 178
        },
        {
          "name": "WORKSTATION",
          "id": 179
        },
        {
          "name": "WORKSTATION - EXECUTIVE",
          "id": 180
        },
        {
          "name": "PRIVACY/QUIET ROOM",
          "id": 181
        },
        {
          "name": "TELPHONE/DATA ROOM",
          "id": 182
        },
        {
          "name": "STORAGE - BUSINESS SUPPORT",
          "id": 183
        },
        {
          "name": "COPIER ROOM",
          "id": 184
        },
        {
          "name": "MISCELLANEOUS - PROPERTY COMMON",
          "id": 185
        },
        {
          "name": "FOOD SERVICE",
          "id": 186
        },
        {
          "name": "WORKROOM",
          "id": 187
        },
        {
          "name": "Space",
          "id": 188
        },
        {
          "name": "SE STAIR",
          "id": 189
        },
        {
          "name": "MECHANICAL ROOM",
          "id": 190
        },
        {
          "name": "MEN'S RESTROOM",
          "id": 191
        },
        {
          "name": "WOMEN'S RESTROOM",
          "id": 192
        },
        {
          "name": "vgvgv",
          "id": 194
        },
        {
          "name": "5SW3.04",
          "id": 195
        },
        {
          "name": "Type Test",
          "id": 196
        },
        {
          "name": "SPACES",
          "id": 200
        },
        {
          "name": "S-FLEX",
          "id": 201
        },
        {
          "name": "Project Space",
          "id": 202
        },
        {
          "name": "Large Meeting Room",
          "id": 203
        },
        {
          "name": "Standard Meeting Room",
          "id": 204
        },
        {
          "name": "Print Hub",
          "id": 205
        },
        {
          "name": "Relax Area",
          "id": 206
        },
        {
          "name": "Informal Collaboration Area",
          "id": 207
        },
        {
          "name": "Touchdown",
          "id": 208
        },
        {
          "name": "Workstations",
          "id": 209
        },
        {
          "name": "Small Meeting Room",
          "id": 210
        },
        {
          "name": "Lockers and Cloaks",
          "id": 211
        },
        {
          "name": "Phone Zone",
          "id": 212
        },
        {
          "name": "Booth",
          "id": 213
        },
        {
          "name": "Tea Point",
          "id": 214
        },
        {
          "name": "Social Space",
          "id": 215
        },
        {
          "name": "Acc. WC",
          "id": 216
        },
        {
          "name": "Male WCs",
          "id": 217
        },
        {
          "name": "Female WCs",
          "id": 218
        },
        {
          "name": "WC Lobby",
          "id": 219
        },
        {
          "name": "Quiet Room",
          "id": 220
        },
        {
          "name": "GWM Control Room",
          "id": 221
        },
        {
          "name": "Circulation",
          "id": 222
        },
        {
          "name": "Kitchen (Trading)",
          "id": 223
        },
        {
          "name": "Male WC",
          "id": 224
        },
        {
          "name": "Female WC",
          "id": 225
        },
        {
          "name": "Stair Lobby",
          "id": 226
        },
        {
          "name": "New Parking type",
          "id": 227
        },
        {
          "name": "Sergeo Test",
          "id": 228
        },
        {
          "name": "Rohan's Parking",
          "id": 229
        },
        {
          "name": "one",
          "id": 230
        },
        {
          "name": "one",
          "id": 231
        },
        {
          "name": "two",
          "id": 232
        },
        {
          "name": "two",
          "id": 233
        },
        {
          "name": "sa",
          "id": 234
        },
        {
          "name": "sa",
          "id": 235
        },
        {
          "name": "vxc",
          "id": 236
        }
      ],
      "name": "None",
      "id": 1
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "EQUIP",
    "id": 146,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "ffffff",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "EQUIPMENT",
    "id": 147,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "68aab7",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "EXECUTIVE DINING ROOM",
    "id": 34,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "5985c8",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "EXECUTIVE KITCHEN",
    "id": 33,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": ""
  },
  {
    "hexColor": "eb9d5f",
    "contentFlag": 3,
    "defaultRoomType": false,
    "cost": 0,
    "name": "EXPANSION    ",
    "id": 61,
    "spaceTypeGroup": {
      "hexColor": "f29373",
      "roomTypes": [
        {
          "name": "WKST",
          "id": 1
        },
        {
          "name": "OFFICE",
          "id": 2
        },
        {
          "name": "RECEPTION",
          "id": 6
        },
        {
          "name": "VP room",
          "id": 17
        },
        {
          "name": "IT",
          "id": 18
        },
        {
          "name": "JANITORS CLOSET",
          "id": 25
        },
        {
          "name": "PANTRY",
          "id": 26
        },
        {
          "name": "BUTLER'S PANTRY",
          "id": 28
        },
        {
          "name": "CLOSET",
          "id": 30
        },
        {
          "name": "WOMEN",
          "id": 31
        },
        {
          "name": "MEN",
          "id": 32
        },
        {
          "name": "EXECUTIVE KITCHEN",
          "id": 33
        },
        {
          "name": "EXECUTIVE DINING ROOM",
          "id": 34
        },
        {
          "name": "DINING ROOM",
          "id": 37
        },
        {
          "name": "Lobby",
          "id": 40
        },
        {
          "name": "Inactive",
          "id": 41
        },
        {
          "name": "Telecom",
          "id": 42
        },
        {
          "name": "Waiting",
          "id": 43
        },
        {
          "name": "Inactive",
          "id": 44
        },
        {
          "name": "STAIR",
          "id": 45
        },
        {
          "name": "MALE",
          "id": 46
        },
        {
          "name": "FEMALE",
          "id": 47
        },
        {
          "name": "ELEVATOR",
          "id": 48
        },
        {
          "name": "PHONE",
          "id": 49
        },
        {
          "name": "COPY",
          "id": 50
        },
        {
          "name": "Inactive",
          "id": 51
        },
        {
          "name": "AREA",
          "id": 52
        },
        {
          "name": "ATTIC STORAGE",
          "id": 53
        },
        {
          "name": "STAIR 2      ",
          "id": 54
        },
        {
          "name": "NEWROOM      ",
          "id": 55
        },
        {
          "name": "ROOM         ",
          "id": 56
        },
        {
          "name": "Inactive",
          "id": 57
        },
        {
          "name": "Inactive",
          "id": 58
        },
        {
          "name": "Inactive",
          "id": 59
        },
        {
          "name": "STAIR 1      ",
          "id": 60
        },
        {
          "name": "EXPANSION    ",
          "id": 61
        },
        {
          "name": "NEW ROOM TYPE",
          "id": 62
        },
        {
          "name": "FLOOR SUPPORT",
          "id": 63
        },
        {
          "name": "CORE",
          "id": 64
        },
        {
          "name": "CLASSROOM",
          "id": 66
        },
        {
          "name": "PLAYROOM",
          "id": 67
        },
        {
          "name": "WKSTN",
          "id": 68
        },
        {
          "name": "Outlook HOTEL",
          "id": 69
        },
        {
          "name": "ELEC",
          "id": 70
        },
        {
          "name": "RISER",
          "id": 71
        },
        {
          "name": "JAN",
          "id": 72
        },
        {
          "name": "IDF",
          "id": 73
        },
        {
          "name": "WORK RM",
          "id": 74
        },
        {
          "name": "KITCHEN/LOUNGE",
          "id": 76
        },
        {
          "name": "KITCHEN/COPY",
          "id": 77
        },
        {
          "name": "MEETING RM",
          "id": 78
        },
        {
          "name": "Private room",
          "id": 85
        },
        {
          "name": "Workstation",
          "id": 86
        },
        {
          "name": "JAN RM",
          "id": 89
        },
        {
          "name": "ELEC RM",
          "id": 90
        },
        {
          "name": "FILE ROOM",
          "id": 92
        },
        {
          "name": "PRIMARY COORIDOR",
          "id": 94
        },
        {
          "name": "STAIRWELL",
          "id": 95
        },
        {
          "name": "KITCHENETTE",
          "id": 96
        },
        {
          "name": "MECH SHAFT",
          "id": 98
        },
        {
          "name": "FILE AREA",
          "id": 99
        },
        {
          "name": "STORAGE ROOM",
          "id": 100
        },
        {
          "name": "Wrkst",
          "id": 101
        },
        {
          "name": "Dedicated Meeting Room",
          "id": 102
        },
        {
          "name": "Phone Room",
          "id": 103
        },
        {
          "name": "Monumental Stair",
          "id": 104
        },
        {
          "name": "Building Service",
          "id": 105
        },
        {
          "name": "Project Room",
          "id": 107
        },
        {
          "name": "Fitness Center",
          "id": 108
        },
        {
          "name": "Convenience Copy Center",
          "id": 109
        },
        {
          "name": "Stairway",
          "id": 111
        },
        {
          "name": "Lobby/Reception",
          "id": 112
        },
        {
          "name": "Locker Room",
          "id": 113
        },
        {
          "name": "Room Support",
          "id": 114
        },
        {
          "name": "Mechanical Electrical Support Area",
          "id": 115
        },
        {
          "name": "Laboratory Storage",
          "id": 116
        },
        {
          "name": "Specialized Room",
          "id": 117
        },
        {
          "name": "Other Support",
          "id": 118
        },
        {
          "name": "Secondary Circulation",
          "id": 119
        },
        {
          "name": "Vertical Penetration",
          "id": 120
        },
        {
          "name": "Office-Exec.",
          "id": 121
        },
        {
          "name": "Primary Circulation",
          "id": 122
        },
        {
          "name": "Laboratory Support",
          "id": 123
        },
        {
          "name": "Laboratory",
          "id": 124
        },
        {
          "name": "Mail Services",
          "id": 126
        },
        {
          "name": "IDF/MDF",
          "id": 127
        },
        {
          "name": "Wrkst-Specialized",
          "id": 128
        },
        {
          "name": "FOCUS",
          "id": 132
        },
        {
          "name": "TEAM RM",
          "id": 133
        },
        {
          "name": "COLLAB",
          "id": 134
        },
        {
          "name": "SERVER RM",
          "id": 135
        },
        {
          "name": "WELLNESS",
          "id": 136
        },
        {
          "name": "SPECIALTY",
          "id": 137
        },
        {
          "name": "COPY PRINT",
          "id": 138
        },
        {
          "name": "ELEV EQUIP",
          "id": 139
        },
        {
          "name": "JANITOR",
          "id": 140
        },
        {
          "name": "BREAK RM",
          "id": 141
        },
        {
          "name": "WKSTN",
          "id": 142
        },
        {
          "name": "ELEV",
          "id": 143
        },
        {
          "name": "VESTIBULE",
          "id": 144
        },
        {
          "name": "TEL/DATA",
          "id": 145
        },
        {
          "name": "EQUIP",
          "id": 146
        },
        {
          "name": "EQUIPMENT",
          "id": 147
        },
        {
          "name": "ELEC. CL",
          "id": 148
        },
        {
          "name": "SERVER",
          "id": 149
        },
        {
          "name": "SHARE",
          "id": 150
        },
        {
          "name": "MED.",
          "id": 151
        },
        {
          "name": "COFFEE",
          "id": 152
        },
        {
          "name": "OFFICE-1P",
          "id": 153
        },
        {
          "name": "SMALL",
          "id": 154
        },
        {
          "name": "BREAK OUT RM",
          "id": 155
        },
        {
          "name": "COATS",
          "id": 156
        },
        {
          "name": "KBTEST",
          "id": 159
        },
        {
          "name": "Testing",
          "id": 163
        },
        {
          "name": "second test",
          "id": 165
        },
        {
          "name": "Patrick Check!",
          "id": 168
        },
        {
          "name": "WORKSTATION - HOTELING",
          "id": 193
        }
      ],
      "name": "Me Spaces",
      "id": 2
    },
    "typeCode": "    "
  }
]

Create Space Type
POST/rooms/types

The following attributes are required to Create Space Type:

name, contentFlag, typeCode, defaultRoomType, cost, spaceTypeGroup

Example URI

POST /rooms/types
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "SpaceTypeAdd",
  "contentFlag": 1,
  "typeCode": "",
  "defaultRoomType": false,
  "cost": 0,
  "spaceTypeGroup": {
    "id": 1
  }
}
Response  201
HideShow
Body
{
  "hexColor": "ffffff",
  "contentFlag": 1,
  "defaultRoomType": false,
  "cost": 0,
  "sortOrder": 234,
  "name": "SpaceTypeAdd",
  "id": 238,
  "spaceTypeGroup": {
    "hexColor": "cbcbcb",
    "roomTypes": [
      {
        "name": "KITCHEN",
        "id": 4
      },
      {
        "name": "FILE",
        "id": 5
      },
      {
        "name": "wkst",
        "id": 7
      },
      {
        "name": "PRINTER-FAX",
        "id": 8
      },
      {
        "name": "COMMUNICATION",
        "id": 9
      },
      {
        "name": "ELECTRICAL",
        "id": 10
      },
      {
        "name": "STORAGE",
        "id": 11
      },
      {
        "name": "PARKING SPACE",
        "id": 12
      },
      {
        "name": "LIBRARY",
        "id": 13
      },
      {
        "name": "MECHANICAL",
        "id": 14
      },
      {
        "name": "TRAINING",
        "id": 15
      },
      {
        "name": "SAFETY",
        "id": 16
      },
      {
        "name": "CONFERENCE",
        "id": 19
      },
      {
        "name": "HOTELING",
        "id": 20
      },
      {
        "name": "COPY/FAX",
        "id": 21
      },
      {
        "name": "MEETING ROOM",
        "id": 22
      },
      {
        "name": "BREAKROOM",
        "id": 23
      },
      {
        "name": "Huddle",
        "id": 24
      },
      {
        "name": "RESTROOM",
        "id": 27
      },
      {
        "name": "CUBE",
        "id": 29
      },
      {
        "name": "WAR ROOM",
        "id": 36
      },
      {
        "name": "BOARD ROOM",
        "id": 39
      },
      {
        "name": "CONF RM",
        "id": 65
      },
      {
        "name": "HUDDLE RM",
        "id": 75
      },
      {
        "name": "Conference Room",
        "id": 79
      },
      {
        "name": "Focus Room",
        "id": 80
      },
      {
        "name": "IDF Closet",
        "id": 81
      },
      {
        "name": "LAB",
        "id": 82
      },
      {
        "name": "Pantry/Vending/Breakroom",
        "id": 83
      },
      {
        "name": "Printer/Copy/Mail",
        "id": 84
      },
      {
        "name": "PRINT/COPY",
        "id": 87
      },
      {
        "name": "WOMENS",
        "id": 88
      },
      {
        "name": "MENS",
        "id": 91
      },
      {
        "name": "CORRIDOR",
        "id": 93
      },
      {
        "name": "ATRIUM",
        "id": 97
      },
      {
        "name": "Walk-up WKST",
        "id": 106
      },
      {
        "name": "Elevator Lobby",
        "id": 110
      },
      {
        "name": "Collaboration Area",
        "id": 125
      },
      {
        "name": "Mail/Print",
        "id": 129
      },
      {
        "name": "Jans",
        "id": 130
      },
      {
        "name": "Jans-Admin",
        "id": 131
      },
      {
        "name": "ID3 Reservable Space",
        "id": 157
      },
      {
        "name": "TESTKB",
        "id": 158
      },
      {
        "name": "Lounge",
        "id": 160
      },
      {
        "name": "Lounge 2",
        "id": 161
      },
      {
        "name": "Wine Cellar",
        "id": 162
      },
      {
        "name": "Testing2",
        "id": 164
      },
      {
        "name": "1123",
        "id": 166
      },
      {
        "name": "testing group",
        "id": 167
      },
      {
        "name": "Patrick Check!",
        "id": 169
      },
      {
        "name": "another type",
        "id": 170
      },
      {
        "name": "creating space",
        "id": 172
      },
      {
        "name": "SabPa",
        "id": 173
      },
      {
        "name": "Sab",
        "id": 174
      },
      {
        "name": "Sabr",
        "id": 175
      },
      {
        "name": "SabPantry",
        "id": 176
      },
      {
        "name": "SabPantry",
        "id": 177
      },
      {
        "name": "New Space Type",
        "id": 178
      },
      {
        "name": "WORKSTATION",
        "id": 179
      },
      {
        "name": "WORKSTATION - EXECUTIVE",
        "id": 180
      },
      {
        "name": "PRIVACY/QUIET ROOM",
        "id": 181
      },
      {
        "name": "TELPHONE/DATA ROOM",
        "id": 182
      },
      {
        "name": "STORAGE - BUSINESS SUPPORT",
        "id": 183
      },
      {
        "name": "COPIER ROOM",
        "id": 184
      },
      {
        "name": "MISCELLANEOUS - PROPERTY COMMON",
        "id": 185
      },
      {
        "name": "FOOD SERVICE",
        "id": 186
      },
      {
        "name": "WORKROOM",
        "id": 187
      },
      {
        "name": "Space",
        "id": 188
      },
      {
        "name": "SE STAIR",
        "id": 189
      },
      {
        "name": "MECHANICAL ROOM",
        "id": 190
      },
      {
        "name": "MEN'S RESTROOM",
        "id": 191
      },
      {
        "name": "WOMEN'S RESTROOM",
        "id": 192
      },
      {
        "name": "vgvgv",
        "id": 194
      },
      {
        "name": "5SW3.04",
        "id": 195
      },
      {
        "name": "Type Test",
        "id": 196
      },
      {
        "name": "SPACES",
        "id": 200
      },
      {
        "name": "S-FLEX",
        "id": 201
      },
      {
        "name": "Project Space",
        "id": 202
      },
      {
        "name": "Large Meeting Room",
        "id": 203
      },
      {
        "name": "Standard Meeting Room",
        "id": 204
      },
      {
        "name": "Print Hub",
        "id": 205
      },
      {
        "name": "Relax Area",
        "id": 206
      },
      {
        "name": "Informal Collaboration Area",
        "id": 207
      },
      {
        "name": "Touchdown",
        "id": 208
      },
      {
        "name": "Workstations",
        "id": 209
      },
      {
        "name": "Small Meeting Room",
        "id": 210
      },
      {
        "name": "Lockers and Cloaks",
        "id": 211
      },
      {
        "name": "Phone Zone",
        "id": 212
      },
      {
        "name": "Booth",
        "id": 213
      },
      {
        "name": "Tea Point",
        "id": 214
      },
      {
        "name": "Social Space",
        "id": 215
      },
      {
        "name": "Acc. WC",
        "id": 216
      },
      {
        "name": "Male WCs",
        "id": 217
      },
      {
        "name": "Female WCs",
        "id": 218
      },
      {
        "name": "WC Lobby",
        "id": 219
      },
      {
        "name": "Quiet Room",
        "id": 220
      },
      {
        "name": "GWM Control Room",
        "id": 221
      },
      {
        "name": "Circulation",
        "id": 222
      },
      {
        "name": "Kitchen (Trading)",
        "id": 223
      },
      {
        "name": "Male WC",
        "id": 224
      },
      {
        "name": "Female WC",
        "id": 225
      },
      {
        "name": "Stair Lobby",
        "id": 226
      },
      {
        "name": "New Parking type",
        "id": 227
      },
      {
        "name": "Sergeo Test",
        "id": 228
      },
      {
        "name": "Rohan's Parking",
        "id": 229
      },
      {
        "name": "one",
        "id": 230
      },
      {
        "name": "one",
        "id": 231
      },
      {
        "name": "two",
        "id": 232
      },
      {
        "name": "two",
        "id": 233
      },
      {
        "name": "sa",
        "id": 234
      },
      {
        "name": "sa",
        "id": 235
      },
      {
        "name": "vxc",
        "id": 236
      },
      {
        "name": "SpaceTypeAdd",
        "id": 238
      }
    ],
    "name": "None",
    "id": 1
  },
  "typeCode": ""
}

Update Space Type
PUT/rooms/types

The following attributes are required to Update Space Type: hexColor, contentFlag, defaultRoomType, cost, sortOrder, name, id, spaceTypeGroup, typeCode

Example URI

PUT /rooms/types
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "hexColor": "ffffff",
  "contentFlag": 1,
  "defaultRoomType": false,
  "cost": 0,
  "sortOrder": 234,
  "name": "A1234",
  "id": 238,
  "spaceTypeGroup": {
    "id": 1
  },
  "typeCode": ""
}
Response  200
HideShow
Body
{
  "hexColor": "ffffff",
  "contentFlag": 1,
  "defaultRoomType": false,
  "cost": 0,
  "sortOrder": 234,
  "name": "A1234",
  "id": 238,
  "spaceTypeGroup": {
    "hexColor": "cbcbcb",
    "roomTypes": [
      {
        "name": "KITCHEN",
        "id": 4
      },
      {
        "name": "FILE",
        "id": 5
      },
      {
        "name": "wkst",
        "id": 7
      },
      {
        "name": "PRINTER-FAX",
        "id": 8
      },
      {
        "name": "COMMUNICATION",
        "id": 9
      },
      {
        "name": "ELECTRICAL",
        "id": 10
      },
      {
        "name": "STORAGE",
        "id": 11
      },
      {
        "name": "PARKING SPACE",
        "id": 12
      },
      {
        "name": "LIBRARY",
        "id": 13
      },
      {
        "name": "MECHANICAL",
        "id": 14
      },
      {
        "name": "TRAINING",
        "id": 15
      },
      {
        "name": "SAFETY",
        "id": 16
      },
      {
        "name": "CONFERENCE",
        "id": 19
      },
      {
        "name": "HOTELING",
        "id": 20
      },
      {
        "name": "COPY/FAX",
        "id": 21
      },
      {
        "name": "MEETING ROOM",
        "id": 22
      },
      {
        "name": "BREAKROOM",
        "id": 23
      },
      {
        "name": "Huddle",
        "id": 24
      },
      {
        "name": "RESTROOM",
        "id": 27
      },
      {
        "name": "CUBE",
        "id": 29
      },
      {
        "name": "WAR ROOM",
        "id": 36
      },
      {
        "name": "BOARD ROOM",
        "id": 39
      },
      {
        "name": "CONF RM",
        "id": 65
      },
      {
        "name": "HUDDLE RM",
        "id": 75
      },
      {
        "name": "Conference Room",
        "id": 79
      },
      {
        "name": "Focus Room",
        "id": 80
      },
      {
        "name": "IDF Closet",
        "id": 81
      },
      {
        "name": "LAB",
        "id": 82
      },
      {
        "name": "Pantry/Vending/Breakroom",
        "id": 83
      },
      {
        "name": "Printer/Copy/Mail",
        "id": 84
      },
      {
        "name": "PRINT/COPY",
        "id": 87
      },
      {
        "name": "WOMENS",
        "id": 88
      },
      {
        "name": "MENS",
        "id": 91
      },
      {
        "name": "CORRIDOR",
        "id": 93
      },
      {
        "name": "ATRIUM",
        "id": 97
      },
      {
        "name": "Walk-up WKST",
        "id": 106
      },
      {
        "name": "Elevator Lobby",
        "id": 110
      },
      {
        "name": "Collaboration Area",
        "id": 125
      },
      {
        "name": "Mail/Print",
        "id": 129
      },
      {
        "name": "Jans",
        "id": 130
      },
      {
        "name": "Jans-Admin",
        "id": 131
      },
      {
        "name": "ID3 Reservable Space",
        "id": 157
      },
      {
        "name": "TESTKB",
        "id": 158
      },
      {
        "name": "Lounge",
        "id": 160
      },
      {
        "name": "Lounge 2",
        "id": 161
      },
      {
        "name": "Wine Cellar",
        "id": 162
      },
      {
        "name": "Testing2",
        "id": 164
      },
      {
        "name": "1123",
        "id": 166
      },
      {
        "name": "testing group",
        "id": 167
      },
      {
        "name": "Patrick Check!",
        "id": 169
      },
      {
        "name": "another type",
        "id": 170
      },
      {
        "name": "creating space",
        "id": 172
      },
      {
        "name": "SabPa",
        "id": 173
      },
      {
        "name": "Sab",
        "id": 174
      },
      {
        "name": "Sabr",
        "id": 175
      },
      {
        "name": "SabPantry",
        "id": 176
      },
      {
        "name": "SabPantry",
        "id": 177
      },
      {
        "name": "New Space Type",
        "id": 178
      },
      {
        "name": "WORKSTATION",
        "id": 179
      },
      {
        "name": "WORKSTATION - EXECUTIVE",
        "id": 180
      },
      {
        "name": "PRIVACY/QUIET ROOM",
        "id": 181
      },
      {
        "name": "TELPHONE/DATA ROOM",
        "id": 182
      },
      {
        "name": "STORAGE - BUSINESS SUPPORT",
        "id": 183
      },
      {
        "name": "COPIER ROOM",
        "id": 184
      },
      {
        "name": "MISCELLANEOUS - PROPERTY COMMON",
        "id": 185
      },
      {
        "name": "FOOD SERVICE",
        "id": 186
      },
      {
        "name": "WORKROOM",
        "id": 187
      },
      {
        "name": "Space",
        "id": 188
      },
      {
        "name": "SE STAIR",
        "id": 189
      },
      {
        "name": "MECHANICAL ROOM",
        "id": 190
      },
      {
        "name": "MEN'S RESTROOM",
        "id": 191
      },
      {
        "name": "WOMEN'S RESTROOM",
        "id": 192
      },
      {
        "name": "vgvgv",
        "id": 194
      },
      {
        "name": "5SW3.04",
        "id": 195
      },
      {
        "name": "Type Test",
        "id": 196
      },
      {
        "name": "SPACES",
        "id": 200
      },
      {
        "name": "S-FLEX",
        "id": 201
      },
      {
        "name": "Project Space",
        "id": 202
      },
      {
        "name": "Large Meeting Room",
        "id": 203
      },
      {
        "name": "Standard Meeting Room",
        "id": 204
      },
      {
        "name": "Print Hub",
        "id": 205
      },
      {
        "name": "Relax Area",
        "id": 206
      },
      {
        "name": "Informal Collaboration Area",
        "id": 207
      },
      {
        "name": "Touchdown",
        "id": 208
      },
      {
        "name": "Workstations",
        "id": 209
      },
      {
        "name": "Small Meeting Room",
        "id": 210
      },
      {
        "name": "Lockers and Cloaks",
        "id": 211
      },
      {
        "name": "Phone Zone",
        "id": 212
      },
      {
        "name": "Booth",
        "id": 213
      },
      {
        "name": "Tea Point",
        "id": 214
      },
      {
        "name": "Social Space",
        "id": 215
      },
      {
        "name": "Acc. WC",
        "id": 216
      },
      {
        "name": "Male WCs",
        "id": 217
      },
      {
        "name": "Female WCs",
        "id": 218
      },
      {
        "name": "WC Lobby",
        "id": 219
      },
      {
        "name": "Quiet Room",
        "id": 220
      },
      {
        "name": "GWM Control Room",
        "id": 221
      },
      {
        "name": "Circulation",
        "id": 222
      },
      {
        "name": "Kitchen (Trading)",
        "id": 223
      },
      {
        "name": "Male WC",
        "id": 224
      },
      {
        "name": "Female WC",
        "id": 225
      },
      {
        "name": "Stair Lobby",
        "id": 226
      },
      {
        "name": "New Parking type",
        "id": 227
      },
      {
        "name": "Sergeo Test",
        "id": 228
      },
      {
        "name": "Rohan's Parking",
        "id": 229
      },
      {
        "name": "one",
        "id": 230
      },
      {
        "name": "one",
        "id": 231
      },
      {
        "name": "two",
        "id": 232
      },
      {
        "name": "two",
        "id": 233
      },
      {
        "name": "sa",
        "id": 234
      },
      {
        "name": "sa",
        "id": 235
      },
      {
        "name": "vxc",
        "id": 236
      },
      {
        "name": "SpaceTypeAdd",
        "id": 237
      },
      {
        "name": "A1234",
        "id": 238
      }
    ],
    "name": "None",
    "id": 1
  },
  "typeCode": ""
}

Delete Space Type
DELETE/rooms/types

Example URI

DELETE /rooms/types
URI Parameters
HideShow
id
string (required) 

ID of the Space/room

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Reset Sort Order of Space Types
POST/rooms/types/resetSortOrders

Example URI

POST /rooms/types/resetSortOrders
Request
HideShow
Headers
Content-Type: application/json
Body
{}
Response  200
HideShow
Body
{
  "response": "Sort orders reset successfully"
}

Centers

Centers-related resources of iOffice API

Centers

Collection of all Centers

Retrieve All Centers
GET/centers{?module}

This API returns list of all centers in particular module

The following attributes are required to get list of centers: module.

Example URI

GET /centers?module=reservation
URI Parameters
HideShow
module
string (required) Example: reservation

Module name

Response  200
HideShow
Body
[
     {
        "name": "Reservation Center",
        "id": 82
     },
     {
        "name": "London Reservation Center",
        "id": 95
     },
     {
        "name": "Maine Reservation Center",
        "id": 106
     }
     ...
  ]

Center Details With All Building And Rules
GET/centers/{centerId}{?selector}

This API returns the details of a particular center with list of all buildings

Example URI

GET /centers/145?selector=buildings(centers(module))%2Crules
URI Parameters
HideShow
centerId
number (required) Example: 145

Reservations Center ID

selector
string (required) Example: buildings(centers(module))%2Crules

Selector ID (returns exact response with ‘buildings(centers(module))%2Crules’)

Response  200
HideShow
Body
{
   "buildings": [
      {
         "code": "",
         "centers": [
            {
               "module": "reservation",
               "name": "Houston Reservation Center - 24 hour",
               "id": 145
            }
         ],
         "name": "ATest1951",
         "id": 1332
      },
      {
         "code": "",
         "centers": [
            {
               "module": "reservation",
               "name": "Houston Reservation Center - 24 hour",
               "id": 145
            }
         ],
         "name": "ATest1853",
         "id": 1223
      },
      ...
   ],
   "name": "Houston Reservation Center - 24 hour",
   "rules": "{\"centerId\":145,\"ruleList\":[{\"roomTypeId\":2,\"$type$\":\"OnlyDuringWorkHours\"}]}",
   "id": 145
}

Holidays

Retrieve Collection of Holidays
GET/centers/holidays

Example URI

GET /centers/holidays
Response  200
HideShow
Body
[
  {
    "holidayItems": [
      {
        "date": "2019-09-25",
        "id": 255
      },
      {
        "date": "2019-09-27",
        "id": 256
      },
      {
        "date": "2019-10-02",
        "id": 257
      },
      {
        "date": "2019-10-10",
        "id": 258
      },
      {
        "date": "2019-10-17",
        "id": 259
      },
      {
        "date": "2019-10-24",
        "id": 260
      },
      {
        "date": "2019-10-31",
        "id": 261
      },
      {
        "date": "2019-11-07",
        "id": 262
      },
      {
        "date": "2019-11-14",
        "id": 263
      },
      {
        "date": "2019-11-21",
        "id": 264
      },
      {
        "date": "2019-11-22",
        "id": 265
      },
      {
        "date": "2019-11-23",
        "id": 266
      },
      {
        "date": "2019-11-24",
        "id": 267
      },
      {
        "date": "2019-11-25",
        "id": 268
      },
      {
        "date": "2019-11-26",
        "id": 269
      },
      {
        "date": "2019-11-27",
        "id": 270
      },
      {
        "date": "2019-11-28",
        "id": 271
      },
      {
        "date": "2019-11-29",
        "id": 272
      },
      {
        "date": "2019-11-30",
        "id": 273
      },
      {
        "date": "2019-12-01",
        "id": 274
      },
      {
        "date": "2019-12-02",
        "id": 275
      },
      {
        "date": "2019-12-03",
        "id": 276
      },
      {
        "date": "2019-12-04",
        "id": 277
      },
      {
        "date": "2019-12-05",
        "id": 278
      },
      {
        "date": "2019-12-06",
        "id": 279
      },
      {
        "date": "2019-12-07",
        "id": 280
      },
      {
        "date": "2019-12-12",
        "id": 281
      },
      {
        "date": "2019-12-19",
        "id": 282
      },
      {
        "date": "2019-12-26",
        "id": 283
      }
    ],
    "dateCreated": 1569959521867,
    "name": "Jason's Holidaze",
    "id": 3,
    "dateUpdated": 1570120771210
  },
  {
    "holidayItems": [],
    "dateCreated": 1569959531367,
    "name": "blank",
    "id": 4
  },
  {
    "holidayItems": [
      {
        "date": "2020-04-02",
        "id": 288
      }
    ],
    "dateCreated": 1585777491843,
    "name": "april 2",
    "id": 6
  },
  {
    "holidayItems": [
      {
        "date": "2021-07-02",
        "id": 297
      },
      {
        "date": "2021-07-03",
        "id": 298
      },
      {
        "date": "2021-07-04",
        "id": 299
      },
      {
        "date": "2021-07-05",
        "id": 300
      }
    ],
    "dateCreated": 1623857288427,
    "name": "Tara's Test",
    "id": 7,
    "dateUpdated": 1623858023163
  }
]

Add Holiday Schedule
POST/centers/holidays

Example URI

POST /centers/holidays
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "Good Friday",
  "holidayItems": [
    {
      "date": "2023-04-07"
    }
  ]
}
Response  201
HideShow
Body
{
  "holidayItems": [
    {
      "date": "2023-04-07",
      "id": 301
    }
  ],
  "dateCreated": 1680621740357,
  "name": "Good Friday",
  "id": 8
}

Update Holiday Schedule
PUT/centers/holidays

Example URI

PUT /centers/holidays
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "April Holidays",
  "id": 8,
  "holidayItems": [
    {
      "date": "2023-04-07"
    },
    {
      "date": "2023-04-11"
    },
    {
      "date": "2023-04-12"
    }
  ]
}
Response  200
HideShow
Body
{
  "holidayItems": [
    {
      "date": "2023-04-07",
      "id": 302
    },
    {
      "date": "2023-04-11",
      "id": 303
    },
    {
      "date": "2023-04-12",
      "id": 304
    }
  ],
  "dateCreated": 1680621740373,
  "name": "Good Friday",
  "id": 8,
  "dateUpdated": 1680622535176
}

Retrieve Single Holiday Schedule
GET/centers/holidays/{id}

Example URI

GET /centers/holidays/id
URI Parameters
HideShow
id
string (required) 

ID of the Holiday Schedule

Response  200
HideShow
Body
{
  "holidayItems": [
    {
      "date": "2023-04-07",
      "id": 301
    }
  ],
  "dateCreated": 1680621740373,
  "name": "Good Friday",
  "id": 8
}

Remove Holiday Schedule
DELETE/centers/holidays/{id}

Example URI

DELETE /centers/holidays/id
URI Parameters
HideShow
id
string (required) 

ID of the Holiday Schedule

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Center Promo Content

Promo Content Collection

Retrieve Center Promo Content
GET/center/{?module,selector}

The following attributes are required to get Promo Content details: module, selector.

Example URI

GET /center/?module=reservation&selector=id%2Cname%2CpromoContent
URI Parameters
HideShow
module
string (required) Example: reservation

Module name

selector
string (required) Example: id%2Cname%2CpromoContent

Selector ID

Response  200
HideShow
Body
[
      {
          "promoContent": [],
          "name": "Test",
          "id": 177
      },
      {
          "promoContent": [],
          "name": "SiteAdmin4388",
          "id": 178
      },
      {
          "promoContent": [],
          "name": "SiteAdmin4388",
          "id": 179
      }
      ...
  ]

Add/Update Promo Content for a Center
PUT/centers/promo

This API Add/Updates the Promo Content details for a Reservation Center

Example URI

PUT /centers/promo
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "centerId": 82,
  "promoContent": [
    "<p><a href=\"https://www.iofficecorp.com/\" rel=\"noopener noreferrer\" target=\"_blank\"><img src=\"https://www.iofficecorp.com/hubfs/2017/Marketplace/ioffice-wheel-2.png?t=1519997685552\"></a></p>",
    "<p><a href=\"https://www.yahoo.com\" rel=\"noopener noreferrer\" target=\"_blank\"><img src=\"https://i.ibb.co/94HpJFj/Screenshot-1.jpg\"></a></p>",
    "<p><img src=\"https://i.ibb.co/7ktkjr6/Screen-Shot-2021-04-21-at-10-57-10-AM.png\"></p>",
    "<p><a href=\"https://hq.iofficeconnect.com/home.i#/admin/users\" rel=\"noopener noreferrer\" target=\"_blank\">HQ SIte</a></p>",
    "<p><img src=\"https://s3.eu-central-1.amazonaws.com/rainforest-random-images/004.jpeg\"></p>"
  ]
}
Response  200
HideShow
Body
{
  "name": "Reservation Center",
  "id": 82
}

Neighborhoods

Neighborhoods-related resources of iOffice API

Neighborhoods

Collection of all Neighborhoods

Retrieve All Neighborhoods
GET/neighborhoods{?centerId}

This API returns list of all neighborhoods in particular module

The following attributes are required to get list of neighborhoods: centerId.

Example URI

GET /neighborhoods?centerId=79
URI Parameters
HideShow
centerId
int (required) Example: 79

Center Id

Response  200
HideShow
Body
[
       {
           "owner": {
               "floorWarden": false,
               "lastName": "Azad",
               "color": "#76C7DA",
               "userName": "sazad",
               "passwordResetAttemptsRemaining": 3,
               "specialNeeds": false,
               "dateUpdated": 1646943255737,
               "firstName": "Sabera",
               "custom10": "33",
               "custom02": "Dog",
               "dateCreated": 1611003598567,
               "custom04": "3",
               "custom03": "1611269672207",
               "custom06": "1610985600000",
               "custom05": "- 3 is Jan 21 and 4 is 6 pm.\n- 6 is 10 am and 7 is Jan 11.\n- 8 should show Jan 11 and 12 pm\n",
               "custom08": "1610388000000",
               "name": "Sabera Azad",
               "custom07": "1610405721816",
               "custom09": "Deparment",
               "id": 3439,
               "userType": {
                   "dateCreated": 1428954498147,
                   "name": "Employee",
                   "id": 1,
                   "dateUpdated": 1630594939190
               },
               "email": "sabera.azad@spaceiq.com"
               },
               "borderColor": "#CCCCCC",
               "code": "Sabera's neighborhood",
               "color": "#CCCCCC",
               "fillOpacity": 0.5,
               "center": {
                   "name": "Austin Space Center",
                   "id": 79
               },
               "borderWeight": 2,
               "description": "Check for insight report",
               "dateUpdated": 1631130028094,
               "borderOpacity": 0.5,
               "dateCreated": 1629231924173,
               "name": "Neighborhood #1",
               "id": 1
           }
       }
   ]

Create a Neighborhoods
PUT/neighborhoods

The following attributes are required to create a Neighborhoods

Example URI

PUT /neighborhoods
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "New Neighborhood_QA",
  "center": {
    "id": 79
  },
  "color": "#CCCCCC",
  "borderWeight": 2,
  "borderColor": "#CCCCCC",
  "borderOpacity": 0.5,
  "fillOpacity": 0.5,
  "effectiveStartDate": 1676451692488,
  "code": "QA_Test"
}
Response  201
HideShow
Body
{
  "borderColor": "#CCCCCC",
  "borderOpacity": 0.5,
  "code": "QA_Test",
  "dateCreated": 1676451854974,
  "color": "#CCCCCC",
  "fillOpacity": 0.5,
  "center": {
    "name": "Austin Space Center",
    "id": 79
  },
  "name": "New Neighborhood_QA",
  "borderWeight": 2,
  "id": 248
}

Edit a Neighborhoods
POST/neighborhoods

Example URI

POST /neighborhoods
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "code": "NWNBHD_550118577",
  "color": "#CCCCCC",
  "name": "Neighborhood1159400",
  "id": 210
}
Response  200
HideShow
Body
{
  "borderColor": "#CCCCCC",
  "borderOpacity": 0.5,
  "code": "NWNBHD_550118577",
  "dateCreated": 1657594121936,
  "color": "#CCCCCC",
  "fillOpacity": 0.5,
  "center": {
    "name": "Austin Space Center",
    "id": 79
  },
  "name": "Neighborhood1159400",
  "borderWeight": 2,
  "id": 210,
  "dateUpdated": 1676463879764
}

Remove a Neighborhoods
DELETE/neighborhoods/{id}

Example URI

DELETE /neighborhoods/id
URI Parameters
HideShow
id
int (required) 

ID of the Neighborhoods

Response  200
HideShow
Body
{
    {
        "response": "Successfully removed"
    }
}

Sections

Collection of all Neighborhood Sections

Retrieve All Sections
GET/neighborhoods/sections

This API returns list of all sections from all neighbourhoods

Example URI

GET /neighborhoods/sections
Response  200
HideShow
Body
[
    {
       "borderColor": "#30e916",
       "borderOpacity": 0.5,
       "dateCreated": 1630004885420,
       "color": "#30e916",
       "fillOpacity": 0.5,
       "name": "Section in Other Building",
       "coordinates": "[{\"lng\":9.772848956794661,\"lat\":-4.961538182748129},{\"lng\":10.062404180897722,\"lat\":-4.967278683995653},{\"lng\":10.351959405000784,\"lat\":-4.973019185243178},{\"lng\":10.641514629103845,\"lat\":-4.978759686490703},{\"lng\":10.931069853206907,\"lat\":-4.984500187738227},{\"lng\":11.220625077309968,\"lat\":-4.990240688985752},{\"lng\":11.51018030141303,\"lat\":-4.995981190233277},{\"lng\":11.799735525516091,\"lat\":-5.001721691480801},{\"lng\":12.089290749619153,\"lat\":-5.007462192728326},{\"lng\":12.089290749619153,\"lat\":-5.315326794173572},{\"lng\":12.089290749619153,\"lat\":-5.623191395618818},{\"lng\":12.089290749619153,\"lat\":-5.931055997064064},{\"lng\":12.089290749619153,\"lat\":-6.23892059850931},{\"lng\":12.089290749619153,\"lat\":-6.546785199954556},{\"lng\":12.089290749619153,\"lat\":-6.854649801399802},{\"lng\":12.089290749619153,\"lat\":-7.162514402845048},{\"lng\":12.089290749619153,\"lat\":-7.470379004290294},{\"lng\":11.80981953829572,\"lat\":-7.484660587032749},{\"lng\":11.530348326972288,\"lat\":-7.498942169775205},{\"lng\":11.250877115648855,\"lat\":-7.513223752517661},{\"lng\":10.971405904325422,\"lat\":-7.527505335260116},{\"lng\":10.69193469300199,\"lat\":-7.541786918002572},{\"lng\":10.412463481678557,\"lat\":-7.5560685007450274},{\"lng\":10.132992270355125,\"lat\":-7.570350083487483},{\"lng\":9.853521059031692,\"lat\":-7.584631666229939},{\"lng\":9.843437046252063,\"lat\":-7.256744980794712},{\"lng\":9.833353033472434,\"lat\":-6.928858295359486},{\"lng\":9.823269020692805,\"lat\":-6.60097160992426},{\"lng\":9.813185007913177,\"lat\":-6.273084924489034},{\"lng\":9.803100995133548,\"lat\":-5.945198239053807},{\"lng\":9.793016982353919,\"lat\":-5.617311553618581},{\"lng\":9.78293296957429,\"lat\":-5.289424868183355},{\"lng\":9.772848956794661,\"lat\":-4.961538182748129}]",
       "borderWeight": 2,
       "id": 2,
       "floor": {
           "area": 16978.2167,
           "dateCreated": 1629985917187,
           "drawingAvailable": true,
           "interiorGross": 0.0,
           "name": "Other Floor",
           "leaseArea": 0.0,
           "id": 64,
           "building": {
               "code": "DO NOT REMOVE",
               "address": {
                   "country": {
                       "defaultSelected": true,
                       "subdivisionCategoryName": "state",
                       "alpha2Code": "US",
                       "isoCode": "US",
                       "name": "United States of America (the)",
                       "id": 223
                   },
                   "city": "Providence",
                   "street": "40 N Main St",
                   "postalCode": "02903",
                   "state": {
                        "country": {
                             "defaultSelected": true,
                             "subdivisionCategoryName": "state",
                             "alpha2Code": "US",
                             "isoCode": "US",
                             "name": "United States of America (the)",
                             "id": 223
                        },
                        "defaultSelected": false,
                        "code": "RI",
                        "name": "Rhode Island",
                        "id": 57,
                        "categoryName": "state"
                   }
               },
               "dateCreated": 1629985886053,
               "metric": false,
               "name": "Other Neighborhoods",
               "location": {},
               "revitLink": "",
               "id": 80,
               "dateUpdated": 1687504772607,
               "costCenters": []
           },
           "dateUpdated": 1629986705960
       },
       "dateUpdated": 1629987061413
    },
    .
    .
    .
]

Create Section
PUT/neighborhoods/sections

This API creates section for particular existing neighbourhood

The ‘Room ID’, ‘Floor ID’, ‘Neighbourhood ID’, ‘Coordinates’ and ‘Name’ is compulsory

Example URI

PUT /neighborhoods/sections
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "borderColor": null,
  "borderOpacity": null,
  "rooms": [
    {
      "id": 2489
    }
  ],
  "color": null,
  "fillOpacity": null,
  "name": "Section1169276",
  "coordinates": "[{\"lng\":2.479061096191407,\"lat\":-3.8195261967366703},{\"lng\":2.6853938140869147,\"lat\":-3.8195261967366703},{\"lng\":2.891726531982423,\"lat\":-3.8195261967366703},{\"lng\":3.098059249877931,\"lat\":-3.8195261967366703},{\"lng\":3.3043919677734386,\"lat\":-3.8195261967366703},{\"lng\":3.3043919677734386,\"lat\":-3.6495981562312148},{\"lng\":3.3043919677734386,\"lat\":-3.4796701157257597},{\"lng\":3.3043919677734386,\"lat\":-3.3097420752203046},{\"lng\":3.3043919677734386,\"lat\":-3.139814034714849},{\"lng\":3.098059249877931,\"lat\":-3.139814034714849},{\"lng\":2.891726531982423,\"lat\":-3.139814034714849},{\"lng\":2.6853938140869147,\"lat\":-3.139814034714849},{\"lng\":2.479061096191407,\"lat\":-3.139814034714849},{\"lng\":2.479061096191407,\"lat\":-3.3097420752203046},{\"lng\":2.479061096191407,\"lat\":-3.4796701157257597},{\"lng\":2.479061096191407,\"lat\":-3.6495981562312148},{\"lng\":2.479061096191407,\"lat\":-3.8195261967366703}]",
  "borderWeight": null,
  "neighborhood": {
    "id": 6299
  },
  "floor": {
    "id": 61
  }
}
Response  201
HideShow
Body
{
  "rooms": [
    {
      "area": 60.94,
      "nameWithDescription": "2053",
      "reservable": false,
      "name": "2053",
      "description": "",
      "id": 50688,
      "floor": {
        "name": "Neighborhood Floor 1",
        "id": 1286,
        "building": {
          "code": "DO NOT REMOVE",
          "name": "Neighborhoods",
          "id": 267
        }
      },
      "type": {
        "color": {
          "red": 117,
          "green": 197,
          "blue": 217
        },
        "name": "CONF",
        "id": 3,
        "spaceTypeGroup": {
          "name": "We Spaces",
          "id": 3
        }
      },
      "users": []
    }
  ],
  "allUsers": [],
  "coordinates": "[{\"lng\":10.091108825683596,\"lat\":-3.739615546108873},{\"lng\":10.2076872253418,\"lat\":-3.739615546108873},{\"lng\":10.324265625000002,\"lat\":-3.739615546108873},{\"lng\":10.440844024658205,\"lat\":-3.739615546108873},{\"lng\":10.557422424316407,\"lat\":-3.739615546108873},{\"lng\":10.557422424316407,\"lat\":-3.588979552610195},{\"lng\":10.557422424316407,\"lat\":-3.438343559111517},{\"lng\":10.557422424316407,\"lat\":-3.2877075656128385},{\"lng\":10.557422424316407,\"lat\":-3.13707157211416},{\"lng\":10.440844024658205,\"lat\":-3.13707157211416},{\"lng\":10.324265625000002,\"lat\":-3.13707157211416},{\"lng\":10.2076872253418,\"lat\":-3.13707157211416},{\"lng\":10.091108825683596,\"lat\":-3.13707157211416},{\"lng\":10.091108825683596,\"lat\":-3.2877075656128385},{\"lng\":10.091108825683596,\"lat\":-3.438343559111517},{\"lng\":10.091108825683596,\"lat\":-3.588979552610195},{\"lng\":10.091108825683596,\"lat\":-3.739615546108873}]",
  "name": "Test Section 1",
  "neighborhood": {
    "borderColor": "#CCCCCC",
    "borderOpacity": 0.5,
    "code": "NWNBHD_835903",
    "color": "#CCCCCC",
    "fillOpacity": 0.5,
    "name": "Neighborhood7023126",
    "borderWeight": 2,
    "id": 36
  },
  "id": 231,
  "floor": {
    "name": "Neighborhood Floor 1",
    "id": 1286,
    "building": {
      "code": "DO NOT REMOVE",
      "metric": false,
      "centers": [
        {
          "module": "move",
          "name": "Austin Move Center",
          "id": 78
        },
        {
          "module": "maintenance",
          "name": "Houston Service Request",
          "id": 77
        },
        {
          "module": "move",
          "name": "London Move Center",
          "id": 90
        },
        {
          "module": "move",
          "name": "Houston Move Center",
          "id": 75
        },
        {
          "module": "maintenance",
          "name": "Service Request",
          "id": 155
        },
        {
          "module": "space",
          "name": "Austin Space Center",
          "id": 79
        }
      ],
      "name": "Neighborhoods",
      "id": 267
    }
  }
}

Update Section
POST/neighborhoods/sections

This API creates section for particular existing neighbourhood

The ‘Room ID’, ‘Floor ID’, ‘Neighbourhood ID’, ‘Section ID’, ‘Coordinates’ and ‘Name’ is compulsory

Example URI

POST /neighborhoods/sections
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "rooms": [
    {
      "id": 50652
    }
  ],
  "allUsers": [],
  "coordinates": "[{\"lng\":6.230826232910156,\"lat\":-2.2629213405391497},{\"lng\":6.397958633422851,\"lat\":-2.2629213405391497},{\"lng\":6.5650910339355475,\"lat\":-2.2629213405391497},{\"lng\":6.732223434448244,\"lat\":-2.2629213405391497},{\"lng\":6.899355834960939,\"lat\":-2.2629213405391497},{\"lng\":6.899355834960939,\"lat\":-2.0597826771027448},{\"lng\":6.899355834960939,\"lat\":-1.8566440136663394},{\"lng\":6.899355834960939,\"lat\":-1.653505350229934},{\"lng\":6.899355834960939,\"lat\":-1.4503666867935288},{\"lng\":6.732223434448244,\"lat\":-1.4503666867935288},{\"lng\":6.5650910339355475,\"lat\":-1.4503666867935288},{\"lng\":6.397958633422851,\"lat\":-1.4503666867935288},{\"lng\":6.230826232910156,\"lat\":-1.4503666867935288},{\"lng\":6.230826232910156,\"lat\":-1.653505350229934},{\"lng\":6.230826232910156,\"lat\":-1.8566440136663394},{\"lng\":6.230826232910156,\"lat\":-2.0597826771027448},{\"lng\":6.230826232910156,\"lat\":-2.2629213405391497}]",
  "name": "Section Name 1",
  "neighborhood": {
    "id": 36
  },
  "id": 232,
  "floor": {
    "id": 1286
  }
}
Response  200
HideShow
Body
{
  "rooms": [
    {
      "area": 60.94,
      "nameWithDescription": "2053",
      "reservable": false,
      "name": "2053",
      "description": "",
      "id": 50688,
      "floor": {
        "name": "Neighborhood Floor 1",
        "id": 1286,
        "building": {
          "code": "DO NOT REMOVE",
          "name": "Neighborhoods",
          "id": 267
        }
      },
      "type": {
        "color": {
          "red": 117,
          "green": 197,
          "blue": 217
        },
        "name": "CONF",
        "id": 3,
        "spaceTypeGroup": {
          "name": "We Spaces",
          "id": 3
        }
      },
      "users": []
    }
  ],
  "allUsers": [],
  "coordinates": "[{\"lng\":10.091108825683596,\"lat\":-3.739615546108873},{\"lng\":10.2076872253418,\"lat\":-3.739615546108873},{\"lng\":10.324265625000002,\"lat\":-3.739615546108873},{\"lng\":10.440844024658205,\"lat\":-3.739615546108873},{\"lng\":10.557422424316407,\"lat\":-3.739615546108873},{\"lng\":10.557422424316407,\"lat\":-3.588979552610195},{\"lng\":10.557422424316407,\"lat\":-3.438343559111517},{\"lng\":10.557422424316407,\"lat\":-3.2877075656128385},{\"lng\":10.557422424316407,\"lat\":-3.13707157211416},{\"lng\":10.440844024658205,\"lat\":-3.13707157211416},{\"lng\":10.324265625000002,\"lat\":-3.13707157211416},{\"lng\":10.2076872253418,\"lat\":-3.13707157211416},{\"lng\":10.091108825683596,\"lat\":-3.13707157211416},{\"lng\":10.091108825683596,\"lat\":-3.2877075656128385},{\"lng\":10.091108825683596,\"lat\":-3.438343559111517},{\"lng\":10.091108825683596,\"lat\":-3.588979552610195},{\"lng\":10.091108825683596,\"lat\":-3.739615546108873}]",
  "name": "Updated Section",
  "neighborhood": {
    "borderColor": "#CCCCCC",
    "borderOpacity": 0.5,
    "code": "NWNBHD_835903",
    "color": "#CCCCCC",
    "fillOpacity": 0.5,
    "name": "Neighborhood7023126",
    "borderWeight": 2,
    "id": 36
  },
  "id": 231,
  "floor": {
    "name": "Neighborhood Floor 1",
    "id": 1286,
    "building": {
      "code": "DO NOT REMOVE",
      "metric": false,
      "centers": [
        {
          "module": "move",
          "name": "Austin Move Center",
          "id": 78
        },
        {
          "module": "maintenance",
          "name": "Houston Service Request",
          "id": 77
        },
        {
          "module": "move",
          "name": "London Move Center",
          "id": 90
        },
        {
          "module": "move",
          "name": "Houston Move Center",
          "id": 75
        },
        {
          "module": "maintenance",
          "name": "Service Request",
          "id": 155
        },
        {
          "module": "space",
          "name": "Austin Space Center",
          "id": 79
        }
      ],
      "name": "Neighborhoods",
      "id": 267
    }
  }
}

Delete Section
DELETE/neighborhoods/Sections/{sectionId}

This API deletes the Section from particular neighbourhood

The following attributes are required to get list of neighborhoods: sectionId.

Example URI

DELETE /neighborhoods/Sections/231
URI Parameters
HideShow
sectionId
int (required) Example: 231

Section Id

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Devices

Devices

Devices related resources of iOffice API

Retrieve Collection of Devices
GET/devices

Example URI

GET /devices
URI Parameters
HideShow
deviceType
string (required) 

Type of Devices to Fetch

selector
`deviceStatus(datePaired%2CdateUnpaired%2CdateUpdated%2CdeviceId%2CdeviceType (required) 

%2ClastDiscoverableDate%2ClastPairedByUserId%2ClastUnpairedByUserId%2ClastUpdatedByUserId)%2CdeviceType %2Csettings(backgroundImage%2CbypassPicture%2CcenterId%2CdisableFields%2CdisplayFloorViewer%2ChideGraphic %2Ctouchless%2CtransparentCard)`)

Response  200
HideShow
Body
[
  {
    "deviceType": "VISITOR_PANEL",
    "settings": {
      "displayFloorViewer": true,
      "centerId": 89,
      "touchless": true,
      "backgroundImage": "",
      "bypassPicture": false,
      "transparentCard": false,
      "disableFields": [],
      "hideGraphic": true
    },
    "name": "Jessica's ipad",
    "id": 190,
    "deviceStatus": {
      "deviceType": "VISITOR_PANEL",
      "lastDiscoverableDate": 1633018243076,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1633017816146,
      "deviceId": 190,
      "datePaired": 1633018252073,
      "dateUpdated": 1633018252073
    }
  },
  {
    "deviceType": "VISITOR_PANEL",
    "settings": {
      "displayFloorViewer": true,
      "centerId": 128,
      "touchless": false,
      "backgroundImage": "",
      "bypassPicture": false,
      "transparentCard": false,
      "disableFields": [],
      "hideGraphic": false
    },
    "name": "iPad Sergeo's",
    "id": 196,
    "deviceStatus": {
      "deviceType": "VISITOR_PANEL",
      "lastDiscoverableDate": 1668605078366,
      "lastPairedByUserId": 3476,
      "lastUnpairedByUserId": 3476,
      "lastUpdatedByUserId": 3951,
      "dateUnpaired": 1652777231223,
      "deviceId": 196,
      "datePaired": 1652777074646,
      "dateUpdated": 1668605078366
    }
  }
]

Retrieve Single Device
GET/devices/{id}

Example URI

GET /devices/234
URI Parameters
HideShow
id
int (required) Example: 234

ID of the Device

selector
`deviceStatus(datePaired%2CdatePolled%2CdateUnpaired%2CdateUpdated%2CdeviceId%2CdeviceType (required) 

%2ClastDiscoverableDate%2ClastPairedByUserId%2ClastUnpairedByUserId%2ClastUpdatedByUserId)%2CdeviceType %2CfloorMarker(floor(building))%2Csettings(campus%2ClegendMinimized%2CmapOrientation(bearing%2Ccenter(lat%2Clng)%2Cpitch%2Czoom) %2Cmodes%2CshowSensorData%2CsiteLogo)`)

Response  200
HideShow
Body
{
  "deviceType": "WAYFINDING",
  "settings": {
    "showSensorData": true,
    "modes": [],
    "campus": [],
    "legendMinimized": false,
    "siteLogo": true,
    "mapOrientation": {
      "bearing": 0,
      "center": {
        "lng": 6.3446044921875,
        "lat": -3.850552816561631
      },
      "zoom": 6.268508237549647,
      "pitch": 0
    }
  },
  "floorMarker": {
    "id": 650,
    "floor": {
      "name": "Ahmedfloor",
      "id": 1293,
      "building": {
        "code": "111",
        "name": "Ahmed Tower",
        "id": 182
      }
    }
  },
  "name": "WAYFINDING Device",
  "id": 234,
  "deviceStatus": {
    "deviceType": "WAYFINDING",
    "lastDiscoverableDate": 1660639596326,
    "lastPairedByUserId": 3476,
    "lastUnpairedByUserId": 3476,
    "lastUpdatedByUserId": 3476,
    "dateUnpaired": 1660639595556,
    "deviceId": 234,
    "datePaired": 1660639579480,
    "dateUpdated": 1660639596326
  }
}

Create Device
POST/devices/create

Example URI

POST /devices/create
URI Parameters
HideShow
selector
string (required) Example: deviceStatus(datePaired%2CdateUnpaired%2CdateUpdated%2CdeviceId%2ClastDiscoverableDate%2ClastPairedByUserId%2ClastUnpairedByUserId%2ClastUpdatedByUserId)%2CdeviceType%2Cenabled%2CfloorMarker(description%2Cposition(x%2Cy)%2Ctype(description%2ChexColor%2CiconUid%2CmarkerTypeGroup(visibleByDefault)))%2Csettings
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "device": {
    "deviceType": "WAYFINDING",
    "enabled": true,
    "name": "WAYFINDING Device",
    "settings": {
      "settingsType": "WAYFINDING"
    }
  },
  "floor": {
    "id": 3814
  },
  "position": {
    "x": 1903.8198380566669,
    "y": 688.6639676114645
  }
}
Response  201
HideShow
Body
{
  "deviceType": "WAYFINDING",
  "settings": {},
  "floorMarker": {
    "position": {
      "x": 1903.82,
      "y": 688.66
    },
    "id": 653,
    "type": {
      "hexColor": "BEA5FA",
      "name": "WAYFINDING",
      "description": "",
      "iconUid": "ios7:home",
      "markerTypeGroup": {
        "code": "$@IOFFICE_DEVICES@$",
        "visibleByDefault": true,
        "name": "iOFFICE Kiosk Devices",
        "id": 18
      },
      "id": 19
    }
  },
  "name": "WAYFINDING Device",
  "id": 239,
  "enabled": true
}

Update Single Device
PUT/devices/{id}

Example URI

PUT /devices/80
URI Parameters
HideShow
id
int (required) Example: 80

ID of the Device

Request
HideShow
Headers
Content-Type: application/json
Body
{
  "name": "center device",
  "settings": {
    "showSensorData": true,
    "modes": [],
    "campus": [],
    "legendMinimized": false,
    "siteLogo": true,
    "mapOrientation": {
      "bearing": -90,
      "center": {
        "lng": 8.480550201386677,
        "lat": -3.8055252372980846
      },
      "pitch": 60,
      "zoom": 5.473784419746073
    },
    "settingsType": "WAYFINDING"
  }
}
Response  200
HideShow
Body
{
  "settings": {
    "modes": [],
    "settingsType": "WAYFINDING",
    "campus": [],
    "mapOrientation": {
      "bearing": -90,
      "center": {
        "lng": 8.480550201386677,
        "lat": -3.8055252372980846
      },
      "zoom": 5.473784419746073,
      "pitch": 60
    }
  },
  "dateCreated": 1561133232940,
  "name": "center device",
  "id": 80,
  "dateUpdated": 1670868716275
}

Delete Device
DELETE/devices/{id}

Example URI

DELETE /devices/123
URI Parameters
HideShow
id
int (required) Example: 123

ID of the Device

Response  200
HideShow
Body
{
  "response": "Successfully removed"
}

Retrieve List Of Devices in Floor
GET/devices

Example URI

GET /devices
URI Parameters
HideShow
deviceType
optinal (required) Example: WAYFINDING

If included, query will return list of devices of given device type

floorId
int (optional) Example: 1293

If included, query will return list of devices in floor

selector
string (optional) Example: deviceStatus(datePaired%2CdatePolled%2CdateUnpaired%2CdateUpdated%2CdeviceId%2CdeviceType%2ClastDiscoverableDate%2ClastPairedByUserId%2ClastUnpairedByUserId%2ClastUpdatedByUserId)%2CdeviceType%2CfloorMarker(floor(building))%2Csettings(campus%2ClegendMinimized%2CmapOrientation(bearing%2Ccenter(lat%2Clng)%2Cpitch%2Czoom)%2Cmodes%2CshowSensorData%2CsiteLogo
Response  200
HideShow
Body
[
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [
        85,
        106,
        43,
        80
      ],
      "legendMinimized": true,
      "siteLogo": false,
      "mapOrientation": {
        "bearing": 16.115099910008443,
        "center": {
          "lng": 3.2505541257661434,
          "lat": -8.526282186004707
        },
        "zoom": 7.255246014229159,
        "pitch": 38.99999999999997
      }
    },
    "floorMarker": {
      "id": 129,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Ray's Device",
    "id": 56,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561388652316,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561388540990,
      "deviceId": 56,
      "datePaired": 1561388698026,
      "dateUpdated": 1561388698026
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": false,
      "mapOrientation": {
        "bearing": -178.48873907526757,
        "center": {
          "lng": 15.237046421842933,
          "lat": -4.94427305388102
        },
        "zoom": 5.039302194252716,
        "pitch": 36.000000000000014
      }
    },
    "floorMarker": {
      "id": 130,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 2",
    "id": 57,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572889885396,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1562159912543,
      "deviceId": 57,
      "datePaired": 1561470229940,
      "dateUpdated": 1572889885396
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [
        80
      ],
      "legendMinimized": true,
      "siteLogo": false,
      "mapOrientation": {
        "bearing": 1.4457481112623327,
        "center": {
          "lng": 4.984510756294071,
          "lat": -8.084774906843208
        },
        "zoom": 5.8320941381670695,
        "pitch": 4.500000000000011
      }
    },
    "floorMarker": {
      "id": 132,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 3",
    "id": 59,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572885630030,
      "lastUpdatedByUserId": 1,
      "deviceId": 59,
      "dateUpdated": 1572885630030
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": -56.30937683644004,
        "center": {
          "lng": 5.603009449229944,
          "lat": -6.439437033737391
        },
        "zoom": 7.155204973562053,
        "pitch": 42
      }
    },
    "floorMarker": {
      "id": 133,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 4",
    "id": 60,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572885501560,
      "lastUpdatedByUserId": 1,
      "deviceId": 60,
      "dateUpdated": 1572885501560
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 20.799999999999727,
        "center": {
          "lng": 9.947040455664364,
          "lat": -5.00768729736734
        },
        "zoom": 5.08747883585588,
        "pitch": 51.5
      }
    },
    "floorMarker": {
      "id": 137,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 5",
    "id": 64,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1582232988173,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561073381106,
      "deviceId": 64,
      "datePaired": 1561047483876,
      "dateUpdated": 1582232988173
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 13.420748082710361,
          "lat": -6.8383613477449074
        },
        "zoom": 5.100358766418762,
        "pitch": 43.500000000000014
      }
    },
    "floorMarker": {
      "id": 138,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 6",
    "id": 65,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1595873431960,
      "lastUpdatedByUserId": 1491,
      "deviceId": 65,
      "dateUpdated": 1595873431960
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 166,
      "floor": {
        "name": "01",
        "id": 1088,
        "building": {
          "code": "111",
          "name": "iOFFICE HQ",
          "id": 128
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 72,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1583363712076,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561074712520,
      "deviceId": 72,
      "datePaired": 1561073196670,
      "dateUpdated": 1583363712076
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 167,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 73,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1618859694570,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561493875476,
      "deviceId": 73,
      "datePaired": 1561493864293,
      "dateUpdated": 1618859694570
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 171,
      "floor": {
        "name": "02",
        "id": 1066,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 77,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561130090626,
      "lastUpdatedByUserId": 1,
      "deviceId": 77,
      "dateUpdated": 1561130090626
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": -90,
        "center": {
          "lng": 8.480550201386677,
          "lat": -3.8055252372980846
        },
        "zoom": 5.473784419746073,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 174,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "center device",
    "id": 80,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1603494032976,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1603494031370,
      "deviceId": 80,
      "datePaired": 1603494038940,
      "dateUpdated": 1603494038940
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 5.674365768849839,
          "lat": -3.976168073150049
        },
        "zoom": 5.473784419746073,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 175,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "far right device",
    "id": 81,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572466841260,
      "lastUpdatedByUserId": 1,
      "deviceId": 81,
      "dateUpdated": 1572466841260
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 8.480550201389747,
          "lat": -3.8055252372659822
        },
        "zoom": 5.473784419746073,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 176,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "far left device",
    "id": 82,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572467356076,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561134789206,
      "deviceId": 82,
      "datePaired": 1561133348400,
      "dateUpdated": 1572467356076
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 178,
      "floor": {
        "name": "D10",
        "id": 1038,
        "building": {
          "code": "CAL",
          "name": "California",
          "id": 91
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 84,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1575396375146,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561156582180,
      "deviceId": 84,
      "datePaired": 1575396382540,
      "dateUpdated": 1575396382540
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 179,
      "floor": {
        "name": "02",
        "id": 1066,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 85,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561156616326,
      "lastUpdatedByUserId": 1,
      "deviceId": 85,
      "dateUpdated": 1561156616326
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 180,
      "floor": {
        "name": "02",
        "id": 1066,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 86,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561156720283,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561156719516,
      "deviceId": 86,
      "datePaired": 1561156653706,
      "dateUpdated": 1561156720283
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": -90,
        "center": {
          "lng": 7.992240200991091,
          "lat": -3.6520659821089083
        },
        "zoom": 5.948613209125885,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 181,
      "floor": {
        "name": "03",
        "id": 1093,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 87,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561156729760,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 87,
      "datePaired": 1561156739716,
      "dateUpdated": 1561156739716
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 196,
      "floor": {
        "name": "07",
        "id": 34,
        "building": {
          "code": "LON",
          "name": "London",
          "id": 86
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 97,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561480494583,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 97,
      "datePaired": 1561480494913,
      "dateUpdated": 1561480494913
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 208,
      "floor": {
        "name": "Wyoming",
        "id": 1054,
        "building": {
          "name": "Houston Tower 3",
          "id": 85
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 107,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1593116572413,
      "lastUpdatedByUserId": 1,
      "deviceId": 107,
      "dateUpdated": 1593116572413
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": -125.1999999999994,
        "center": {
          "lng": 75.91540458196755,
          "lat": -22.229372176849182
        },
        "zoom": 4.1,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 209,
      "floor": {
        "name": "Wyoming",
        "id": 1054,
        "building": {
          "name": "Houston Tower 3",
          "id": 85
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 108,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561494415653,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561494414966,
      "deviceId": 108,
      "datePaired": 1561494409193,
      "dateUpdated": 1561494415653
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 6.859931945823973,
          "lat": -3.53620881848326
        },
        "zoom": 5.660565106624534,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 210,
      "floor": {
        "name": "01",
        "id": 1059,
        "building": {
          "name": "Houston Tower 5 - Houston, Texas",
          "id": 102
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 109,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561490713383,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 109,
      "datePaired": 1561490731656,
      "dateUpdated": 1561490731656
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": true,
      "siteLogo": false,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 6.85993194582079,
          "lat": -3.5362088184801195
        },
        "zoom": 5.660565106624534,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 211,
      "floor": {
        "name": "01",
        "id": 1059,
        "building": {
          "name": "Houston Tower 5 - Houston, Texas",
          "id": 102
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 110,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561518701546,
      "lastUpdatedByUserId": 1,
      "deviceId": 110,
      "dateUpdated": 1561518701546
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 1.433357575324749,
        "center": {
          "lng": 10.957569036090149,
          "lat": -4.2781575515084285
        },
        "zoom": 5.1349811426631025,
        "pitch": 51.99999999999999
      }
    },
    "floorMarker": {
      "id": 215,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Test 7",
    "id": 114,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1595872320320,
      "lastUpdatedByUserId": 1491,
      "deviceId": 114,
      "dateUpdated": 1595872320320
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 221,
      "floor": {
        "name": "02",
        "id": 1066,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 120,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1561493093406,
      "lastUpdatedByUserId": 1,
      "deviceId": 120,
      "dateUpdated": 1561493093406
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 6.8794593008346965,
          "lat": -4.167092468984848
        },
        "zoom": 6.263476372718859,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 222,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 121,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1565202447613,
      "lastPairedByUserId": 1339,
      "lastUnpairedByUserId": 1339,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1561495245330,
      "deviceId": 121,
      "datePaired": 1561495218116,
      "dateUpdated": 1565202447613
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 224,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "TESTING DEVICE 2",
    "id": 123,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1583363512130,
      "lastUpdatedByUserId": 1,
      "deviceId": 123,
      "dateUpdated": 1583363512130
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 300,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 135,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "datePolled": 1618900558253,
      "lastDiscoverableDate": 1618860363316,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 135,
      "datePaired": 1618860495833,
      "dateUpdated": 1618860495833
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": -90,
        "center": {
          "lng": 11.557252823950535,
          "lat": -5.645670344128291
        },
        "zoom": 6.183826242679035,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 307,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 142,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1574111102386,
      "lastPairedByUserId": 1,
      "lastUnpairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "dateUnpaired": 1574111100586,
      "deviceId": 142,
      "datePaired": 1574111109896,
      "dateUpdated": 1574111109896
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 7.274631348421281,
          "lat": -5.5614368995998404
        },
        "zoom": 5.634130891079857,
        "pitch": 60
      }
    },
    "floorMarker": {
      "id": 308,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 143,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1565028988670,
      "lastPairedByUserId": 1339,
      "lastUpdatedByUserId": 1339,
      "deviceId": 143,
      "datePaired": 1565028998880,
      "dateUpdated": 1565028998880
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 309,
      "floor": {
        "name": "10",
        "id": 15,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 144,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1564591611703,
      "lastUpdatedByUserId": 1,
      "deviceId": 144,
      "dateUpdated": 1564591611703
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 310,
      "floor": {
        "name": "10",
        "id": 15,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 145,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1564591428940,
      "lastUpdatedByUserId": 1,
      "deviceId": 145,
      "dateUpdated": 1564591428940
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 311,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 146,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1574111731420,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 146,
      "datePaired": 1574111739696,
      "dateUpdated": 1574111739696
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 312,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 147,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1573775363846,
      "lastUpdatedByUserId": 1339,
      "deviceId": 147,
      "dateUpdated": 1573775363846
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 313,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 148,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1565029420746,
      "lastUpdatedByUserId": 1339,
      "deviceId": 148,
      "dateUpdated": 1565029420746
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 314,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 149,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1565027527643,
      "lastUpdatedByUserId": 1339,
      "deviceId": 149,
      "dateUpdated": 1565027527643
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 315,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 150,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1564674136470,
      "lastUpdatedByUserId": 1,
      "deviceId": 150,
      "dateUpdated": 1564674136470
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 316,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 151,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1565029421986,
      "lastUpdatedByUserId": 1339,
      "deviceId": 151,
      "dateUpdated": 1565029421986
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 321,
      "floor": {
        "name": "07",
        "id": 1,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 154,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1625066532090,
      "lastUpdatedByUserId": 1,
      "deviceId": 154,
      "dateUpdated": 1625066532090
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [
        82,
        171
      ],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 8.173828125,
          "lat": -3.4366581585590836
        },
        "zoom": 6.027846559139003,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 322,
      "floor": {
        "name": "07",
        "id": 1,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 155,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1625093490516,
      "lastUpdatedByUserId": 1,
      "deviceId": 155,
      "dateUpdated": 1625093490516
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 429,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "BOTTOM",
    "id": 165,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1572467316423,
      "lastUpdatedByUserId": 1,
      "deviceId": 165,
      "dateUpdated": 1572467316423
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 433,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 169,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1574112387323,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 169,
      "datePaired": 1574112394826,
      "dateUpdated": 1574112394826
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 434,
      "floor": {
        "name": "06",
        "id": 3,
        "building": {
          "code": "",
          "name": "Houston Tower 2",
          "id": 43
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 170,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1574113243016,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 170,
      "datePaired": 1574113252036,
      "dateUpdated": 1574113252036
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 437,
      "floor": {
        "name": "01",
        "id": 1122,
        "building": {
          "name": "Autocad Test - Pita",
          "id": 134
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 173,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1575417309193,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 173,
      "datePaired": 1575417352536,
      "dateUpdated": 1575417352536
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 459,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 175,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1582232892203,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 175,
      "datePaired": 1582232898303,
      "dateUpdated": 1582232898303
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 503,
      "floor": {
        "name": "01",
        "id": 1110,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 176,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1587749932170,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 176,
      "datePaired": 1587749963213,
      "dateUpdated": 1587749963213
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": true,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "center": {
          "lng": 10.05523681640625,
          "lat": -5.1866881497044375
        },
        "zoom": 5.798602562239104,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 509,
      "floor": {
        "name": "05",
        "id": 37,
        "building": {
          "code": "HT1",
          "name": "Houston Tower 1",
          "id": 82
        }
      }
    },
    "name": "Danielle's Test",
    "id": 177,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1588177464716,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 177,
      "datePaired": 1588177488236,
      "dateUpdated": 1588177488236
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 523,
      "floor": {
        "name": "07",
        "id": 1099,
        "building": {
          "code": "code",
          "name": "Arizona - name",
          "id": 108
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 178,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1597089251906,
      "lastUpdatedByUserId": 1339,
      "deviceId": 178,
      "dateUpdated": 1597089251906
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 526,
      "floor": {
        "name": "01",
        "id": 1065,
        "building": {
          "code": "ALK",
          "name": "Alaska",
          "id": 106
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 179,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1600272795356,
      "lastUpdatedByUserId": 1,
      "deviceId": 179,
      "dateUpdated": 1600272795356
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 601,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 183,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "datePolled": 1618867406246,
      "lastDiscoverableDate": 1618859833073,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 183,
      "datePaired": 1618859838353,
      "dateUpdated": 1618859838353
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 602,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 184,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1618860600976,
      "lastPairedByUserId": 1,
      "lastUpdatedByUserId": 1,
      "deviceId": 184,
      "datePaired": 1618860605866,
      "dateUpdated": 1618860605866
    }
  },
  {
    "deviceType": "WAYFINDING",
    "settings": {
      "showSensorData": false,
      "modes": [],
      "campus": [],
      "legendMinimized": false,
      "siteLogo": true,
      "mapOrientation": {
        "bearing": 0,
        "pitch": 0
      }
    },
    "floorMarker": {
      "id": 603,
      "floor": {
        "name": "20",
        "id": 12,
        "building": {
          "code": "AUS",
          "name": "Austin",
          "id": 80
        }
      }
    },
    "name": "WAYFINDING Device",
    "id": 185,
    "deviceStatus": {
      "deviceType": "WAYFINDING",
      "lastDiscoverableDate": 1618861865103,
      "lastUpdatedByUserId": 1,
      "deviceId": 185,
      "dateUpdated": 1618861865103
    }
  }
]

List of Device Types
GET/devices/types

Example URI

GET /devices/types
Response  200
HideShow
Body
[
  {
    "deviceType": "SPACE_PANEL",
    "user": {
      "floorWarden": false,
      "firstName": "SPACE_PANEL",
      "lastName": "DeviceUser",
      "dateCreated": 1559948578660,
      "color": "#A5F0C2",
      "name": "SPACE_PANEL DeviceUser",
      "id": 1509,
      "userType": {
        "dateCreated": 1428954498147,
        "name": "Employee",
        "id": 1,
        "dateUpdated": 1669893659410
      },
      "userName": "$@spacepaneldeviceuser@$",
      "passwordResetAttemptsRemaining": 3,
      "specialNeeds": false,
      "dateUpdated": 1559948578807
    },
    "markerType": {
      "hexColor": "3FB7A9",
      "dateCreated": 1559937354100,
      "name": "SPACE_PANEL",
      "description": "",
      "iconUid": "11087",
      "markerTypeGroup": {
        "code": "$@IOFFICE_DEVICES@$",
        "dateCreated": 1559926966740,
        "name": "iOFFICE Kiosk Devices",
        "id": 18
      },
      "id": 20
    }
  },
  {
    "deviceType": "WAYFINDING",
    "user": {
      "floorWarden": false,
      "firstName": "WAYFINDING",
      "lastName": "DeviceUser",
      "dateCreated": 1559948631790,
      "color": "#91FCFD",
      "name": "WAYFINDING DeviceUser",
      "id": 1510,
      "userType": {
        "dateCreated": 1428954498147,
        "name": "Employee",
        "id": 1,
        "dateUpdated": 1669893659410
      },
      "userName": "$@wayfindingdeviceuser@$",
      "passwordResetAttemptsRemaining": 3,
      "specialNeeds": false,
      "dateUpdated": 1559948631940
    },
    "markerType": {
      "hexColor": "BEA5FA",
      "dateCreated": 1559926966786,
      "name": "WAYFINDING",
      "description": "",
      "iconUid": "54614",
      "markerTypeGroup": {
        "code": "$@IOFFICE_DEVICES@$",
        "dateCreated": 1559926966740,
        "name": "iOFFICE Kiosk Devices",
        "id": 18
      },
      "id": 19,
      "dateUpdated": 1582233086343
    }
  },
  {
    "deviceType": "VISITOR_PANEL",
    "user": {
      "floorWarden": false,
      "firstName": "VISITOR_PANEL",
      "lastName": "DeviceUser",
      "dateCreated": 1603493951377,
      "color": "#D47456",
      "name": "VISITOR_PANEL DeviceUser",
      "id": 3359,
      "userType": {
        "dateCreated": 1428954498147,
        "name": "Employee",
        "id": 1,
        "dateUpdated": 1669893659410
      },
      "userName": "$@visitorpaneldeviceuser@$",
      "passwordResetAttemptsRemaining": 3,
      "specialNeeds": false,
      "dateUpdated": 1603493951583
    },
    "markerType": {
      "hexColor": "1AA3A5",
      "dateCreated": 1603493951200,
      "name": "VISITOR_PANEL",
      "description": "",
      "iconUid": "23770",
      "markerTypeGroup": {
        "code": "$@IOFFICE_DEVICES@$",
        "dateCreated": 1559926966740,
        "name": "iOFFICE Kiosk Devices",
        "id": 18
      },
      "id": 126
    }
  }
]

Unpair Device
POST/devices/unpair/{id}

Example URI

POST /devices/unpair/80
URI Parameters
HideShow
id
int (required) Example: 80

ID of the Device

Response  200
HideShow
Body
{
  "dateUnpaired": 1670870511776,
  "unpaired": "device:WAYFINDING:80"
}

Device Pending
GET/devices/pending

Example URI

GET /devices/pending
Response  200
HideShow
Body
{
  "expiresIn": 60,
  "startDate": 1670867655990
}

Broadcast Device
POST/devices/broadcast/

Example URI

POST /devices/broadcast/
Request
HideShow
Headers
Content-Type: application/json
Body
{}
Response  200
HideShow
Body
{
  "expiresIn": 60,
  "startDate": 1670867655990
}

Sensors

Retrieve Sensors
GET/sensors

Example URI

GET /sensors
Response  200
HideShow
Body
[
  {
    "uid": "@031915ff-fbac-446b-ae3d-911d8c7e5ba0",
    "name": "54 phone room (suite 3)",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    }
  },
  {
    "uid": "@0f018303-33d6-4de6-b392-b8520e24948f",
    "name": "62 wkst",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    }
  },
  {
    "uid": "1007706",
    "name": "44 Manuel",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007707",
    "name": "46 Cameron",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007708",
    "name": "48 Mykal",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007710",
    "name": "47 Victor",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007712",
    "name": "49 Natalia",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007725",
    "name": "50 wkst (Patrick)",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007726",
    "name": "51 Jason",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007728",
    "name": "52 kitchen",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007730",
    "name": "56 lounge by the quiet room",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "1007731",
    "name": "58 lounge by the window st 3",
    "type": {
      "id": "UTI_LIVE_MOTION",
      "name": "UtilLive Motion Sensor"
    }
  },
  {
    "uid": "123",
    "name": "test",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    }
  },
  {
    "uid": "12311111",
    "name": "",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    },
    "currentValue": 0,
    "readType": "utilization",
    "lastSensorChangeDate": "2020-01-13T20:38:03Z"
  },
  {
    "uid": "123123",
    "name": "",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    },
    "currentValue": 0,
    "readType": "utilization",
    "lastSensorChangeDate": "2020-02-27T16:20:55Z"
  },
  {
    "uid": "12345",
    "name": "testing",
    "type": {
      "id": "HELIUM_GREEN",
      "name": "Helium Green Sensor"
    }
  },
  {
    "uid": "897987",
    "name": "",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    },
    "currentValue": 0,
    "readType": "utilization",
    "lastSensorChangeDate": "2020-02-26T21:43:40Z"
  },
  {
    "uid": "kenton",
    "name": "test",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    }
  },
  {
    "uid": "pizza",
    "name": "",
    "type": {
      "id": "GE_OCCUPANCY",
      "name": "General Electric Occupancy Sensor"
    },
    "currentValue": 0,
    "readType": "utilization",
    "lastSensorChangeDate": "2020-02-26T21:43:28Z"
  }
]

Retrieve Sensor Types
GET/sensors/types

Example URI

GET /sensors/types
Response  200
HideShow
Body
{
  "status": "ok",
  "response": [
    {
      "id": "HELIUMGREEN",
      "name": "Helium Green",
      "sensorTypes": [
        {
          "id": "HELIUM_GREEN",
          "name": "Helium Green Sensor"
        }
      ]
    },
    {
      "id": "IACONNECTS",
      "name": "iaConnects",
      "sensorTypes": [
        {
          "id": "IA_UTILIZATION",
          "name": "IAConnects Utilization Sensor"
        }
      ]
    },
    {
      "id": "COWORKR",
      "name": "CoWorkr",
      "sensorTypes": [
        {
          "id": "COWORKR_OCCUPANCY",
          "name": "CoWorkr Occupancy Sensor"
        },
        {
          "id": "COWORKR_PEOPLE_COUNT",
          "name": "CoWorkr People Count Sensor"
        }
      ]
    },
    {
      "id": "VERGESENSE",
      "name": "Vergesense",
      "sensorTypes": [
        {
          "id": "VERGESENSE",
          "name": "VergeSense People Count Sensor"
        }
      ]
    },
    {
      "id": "CURRENT",
      "name": "Current",
      "sensorTypes": [
        {
          "id": "GE_OCCUPANCY",
          "name": "General Electric Occupancy Sensor"
        },
        {
          "id": "GE_PEOPLE_COUNT",
          "name": "General Electric People Count Sensor"
        }
      ]
    },
    {
      "id": "IBEACON",
      "name": "iBeacon",
      "sensorTypes": [
        {
          "id": "IBEACON",
          "name": "iBeacon"
        }
      ]
    },
    {
      "id": "UTILIVE",
      "name": "UtiLive",
      "sensorTypes": [
        {
          "id": "UTI_LIVE_MOTION",
          "name": "UtilLive Motion Sensor"
        }
      ]
    },
    {
      "id": "WORKPLACEFABRIC",
      "name": "Workplace Fabric",
      "sensorTypes": [
        {
          "id": "WORKPLACE_FABRIC",
          "name": "Workplace Fabric Sensor"
        }
      ]
    },
    {
      "id": "RADIANT",
      "name": "Radiant",
      "sensorTypes": [
        {
          "id": "RADIANT_OCCUPANCY",
          "name": "Radiant Occupancy Sensor"
        }
      ]
    },
    {
      "id": "EMBRAVA",
      "name": "Embrava",
      "sensorTypes": [
        {
          "id": "EMBRAVA_DESK_SIGN",
          "name": "Embrava Desk Sign"
        }
      ]
    }
  ]
}

Retrieve Sensor Rooms
GET/sensors/rooms

Example URI

GET /sensors/rooms
URI Parameters
HideShow
activeNow
boolean (required) Example: true
Response  200
HideShow
Body
{
  "status": "ok",
  "response": [
    {
      "roomId": 80426,
      "links": [
        {
          "sensorUid": "12345",
          "sensorType": {
            "id": "HELIUM_GREEN",
            "name": "Helium Green Sensor"
          },
          "notes": "testing",
          "linkStart": "2022-12-12T07:19:17Z"
        }
      ]
    },
    {
      "roomId": 77468,
      "links": [
        {
          "sensorUid": "897987",
          "sensorType": {
            "id": "GE_OCCUPANCY",
            "name": "General Electric Occupancy Sensor"
          },
          "notes": "",
          "linkStart": "2020-02-26T21:43:28Z"
        }
      ]
    },
    {
      "roomId": 79782,
      "links": [
        {
          "sensorUid": "12311111",
          "sensorType": {
            "id": "GE_OCCUPANCY",
            "name": "General Electric Occupancy Sensor"
          },
          "notes": "",
          "linkStart": "2020-01-13T20:38:03Z"
        }
      ]
    },
    {
      "roomId": 77475,
      "links": [
        {
          "sensorUid": "123123",
          "sensorType": {
            "id": "GE_OCCUPANCY",
            "name": "General Electric Occupancy Sensor"
          },
          "notes": "",
          "linkStart": "2020-02-27T16:20:55Z"
        }
      ]
    }
  ]
}

Add/Move/Deallocate Sensor
POST/sensors/rooms

Request response for Add/Move Sensor:

Example URI

POST /sensors/rooms
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "roomId": 80144,
  "links": [
    {
      "sensorUid": "0909",
      "notes": "Test",
      "vendor": {
        "id": "IBEACON",
        "name": "iBeacon",
        "sensorTypes": [
          {
            "id": "IBEACON",
            "name": "iBeacon"
          }
        ]
      },
      "sensorType": {
        "id": "IBEACON",
        "name": "iBeacon"
      }
    }
  ]
}
Response  200
HideShow
Body
{
          "status": "ok",
          "response": {
            "roomId": 80144,
            "links": [
              {
                "sensorUid": "0909",
                "sensorType": {
                  "id": "IBEACON",
                  "name": "iBeacon"
                },
                "notes": "Test",
                "linkStart": "2023-01-10T15:58:59Z"
              }
            ]
          }
        }

Request response for Deallocate Sensor:
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "roomId": 80144,
  "links": []
}
Response  200
HideShow
Body
{
  "status": "ok",
  "response": {
    "roomId": 80144,
    "links": []
  }
}

Update Sensor
PUT/sensors

Example URI

PUT /sensors
Request
HideShow
Headers
Content-Type: application/json
Body
{
  "uid": "0909",
  "name": "TestEdit",
  "type": {
    "id": "IBEACON"
  }
}
Response  200
HideShow
Body
{
  "status": "ok",
  "response": 1
}

Retrieve Sensor Live Room Data
GET/sensors/live-room-utilization

Example URI

GET /sensors/live-room-utilization
URI Parameters
HideShow
floorId
int (required) Example: 408

ID of the floor

Response  200
HideShow
Body
{
  "status": "ok",
  "response": {}
}

Retrieve Sensor Live Room People Count
GET/sensors/live-room-people-count

Example URI

GET /sensors/live-room-people-count
URI Parameters
HideShow
floorId
int (required) Example: 408

ID of the floor

aggregate
string (required) Example: max
Response  200
HideShow
Body
{
  "status": "ok",
  "response": {}
}

SFTP

SFTP Access related resources of iOffice API

Setup SFTP Access

Retrieve SFTP Details
GET/sftp

Example URI

GET /sftp
URI Parameters
HideShow
orderBy
string (required) Example: dateCreated
orderByType
string (required) Example: desc
Response  200
HideShow
Body
[
  {
    "passwordResetAllowed": false,
    "dateCreated": 1672331684510,
    "expired": true,
    "cancelled": false,
    "recipientName": "Carlos Rojas",
    "sshKeyAllowed": true,
    "id": 51,
    "enteredBy": {
      "name": "Customer Service",
      "id": 1
    },
    "recipientEmail": "carlos.rojas@eptura.com"
  },
  {
    "passwordResetAllowed": false,
    "dateCreated": 1663693163523,
    "expired": true,
    "sshKeyRedeemed": 1663693232074,
    "cancelled": true,
    "recipientName": "Carlos Rojas",
    "sshKeyAllowed": true,
    "id": 45,
    "enteredBy": {
      "name": "Customer Service",
      "id": 1
    },
    "recipientEmail": "carlos.rojas@spaceiq.com"
  },
  {
    "passwordResetAllowed": false,
    "dateCreated": 1663688819606,
    "expired": true,
    "sshKeyRedeemed": 1663689320499,
    "cancelled": true,
    "recipientName": "Carlos Rojas",
    "sshKeyAllowed": true,
    "id": 44,
    "enteredBy": {
      "name": "Customer Service",
      "id": 1
    },
    "recipientEmail": "carlos.rojas@spaceiq.com"
  },
  {
    "passwordResetAllowed": true,
    "passwordResetRedeemed": 1658844365931,
    "dateCreated": 1658844224580,
    "expired": true,
    "cancelled": false,
    "recipientName": "Ashitosh Wagh",
    "sshKeyAllowed": false,
    "id": 43,
    "enteredBy": {
      "name": "Admin Wagh",
      "id": 3951
    },
    "recipientEmail": "ashitosh.wagh@spaceiq.com"
  },
  {
    "passwordResetAllowed": false,
    "dateCreated": 1648571513726,
    "expired": true,
    "cancelled": false,
    "recipientName": "Matthew",
    "sshKeyAllowed": true,
    "id": 42,
    "enteredBy": {
      "name": "Customer Service",
      "id": 1
    },
    "recipientEmail": "matthew.farmer@spaceiq.com"
  }
]

Provide SFTP Access(Add SFTP User)
POST/sftp/create

Example URI

POST /sftp/create
URI Parameters
HideShow
Request
application/json (required) 
Response  200
HideShow
Body
{
  "passwordResetAllowed": true,
  "dateCreated": 1680625515742,
  "expired": false,
  "cancelled": false,
  "recipientName": "Rushikesh",
  "sshKeyAllowed": false,
  "id": 54,
  "enteredBy": {
    "name": "SiteAdmin 1234",
    "id": 3887
  },
  "recipientEmail": "Rushikesh.Mali@eptura.com"
}

Cancel SFTP Access Invite
PUT/sftp/cancel

Example URI

PUT /sftp/cancel
Request
HideShow
Headers
Content-Type: application/json
Body
{}
Response  200
HideShow
Body
{
  "passwordResetAllowed": true,
  "dateCreated": 1680625515803,
  "cancelled": true,
  "recipientName": "Rushikesh",
  "id": 54,
  "sshKeyAllowed": false,
  "recipientEmail": "Rushikesh.Mali@eptura.com",
  "dateUpdated": 1680625971533
}

SFTP Enabled
GET/sftp/enabled

Example URI

GET /sftp/enabled
Response  200
HideShow
Body
{
  "response": "dev_jcook_testing"
}

Generated by aglio on 26 Jun 2023