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
printerNameto another, when that resource’sidis5.
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.
-
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.
-
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.
-
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.
-
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.
-
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.
-
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 UserGET/users/{id}
Example URI
- id
string(required)ID of the User
200JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 UserPUT/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
IDand updated value for thecostCenterattribute.
-
To update a User’s non-default Cost Center(s) (Category ID is greater than 1) send JSON with the User’s
IDand updated value for thecostCentersattribute.
Example URI
- id
string(required)ID of the User
Headers
Content-Type: application/jsonBody
{
"id": 23,
"jobTitle": "Developer",
"costCenter": {
"id": 88
},
"costCenters": [
{
"id": 1234
},
{
"id": 5678
}
]
}200Remove a UserDELETE/users/{id}
Example URI
- id
string(required)ID of the User
200Body
{
{
"response": "Successfully removed"
}
}Attach an Avatar to a User ¶
Attach an Avatar to a User
Attach an Avatar to a UserPOST/users/{id}/attachAvatar
The following attributes are required to attach an avatar: image, fileName.
Example URI
- id
string(required)ID of the User
Headers
Content-Type: application/jsonBody
{
"image": "BASE-64-IMAGE-STRING",
"fileName": "tiny_cat_12573_8950.jpg"
}200JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 UsersGET/users/{?centerId,userTypeId,role,siteAdmin,hasRoom,hasDefaultVisitorCenter,modifiedOrCreatedAfter,savedSearchId}
Example URI
- centerId
number(optional) Example: 12Id of center to query from. If
centerIdis providedroleis required- userTypeId
number(optional) Example: 23Id of user type to query from.
- role
string(optional) Example: operatorRole name to query from. Valid values are: administrator, operator, customer, manager, and technician. If
roleis providedcenterIdis required- siteAdmin
boolean(optional) Example: trueIf true, query will include users with Admin permissions
- hasRoom
boolean(optional) Example: trueIf true, query will include users with rooms
- hasDefaultVisitorCenter
boolean(optional) Example: trueIf true, query will include users with a default visitor center
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- savedSearchId
string(optional)Saved Search Id used to filter the Users list.
200JSON representation of the User Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":6
...
},
{
"id":7
...
},
{
"id":8
...
}
]Search UsersGET/users/{?search}
Example URI
- limit
number(optional) Example: 20To limit the number of result records
- orderBy
string(required) Example: firstNameTo sort the result basis firstName
- orderByType
string(required) Example: ascTo sort the result in Ascending order
- search
string(required) Example: APIText to Search
- selector
string(required)- startAt
string(required)
200Body
[
{
"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 UserPOST/users/
The following attributes are required to create a User: firstName, lastName, email.
Example URI
Headers
Content-Type: application/jsonBody
{
"firstName": "Falco",
"lastName": "Lombardi",
"email": "flombardi@iofficecorp.com"
}201JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 SearchPOST/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
Headers
Content-Type: application/jsonBody
{
"availability": "EVERYONE",
"filters": [
{
"qualifier": "CONTAINS",
"valueString": "fox.mccloud",
"propertyPath": "email",
"name": ""
}
],
"itemClassName": "com.iofficeconnect.user.User",
"matchingType": false,
"name": ""
}200JSON representation of the User Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":6
...
},
{
"id":7
...
},
{
"id":8
...
}
]Get current logged in user ¶
Get data for currently logged in user
Retrieve Current UserGET/users/me
Example URI
200JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 ExistsGET/users/username/{username}
Example URI
- username
string(required)
200Headers
Content-Type: application/jsonBody
{
"available": "true",
}Get Current User Report Auth Data ¶
Get current user report auth data
Retrieve Current User Report Auth DataGET/users/me/reportAuth
Example URI
200Headers
Content-Type: application/jsonBody
{
"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 DataGET/users/me/supportAuth
Example URI
200Headers
Content-Type: application/jsonBody
{
"server:" "http://support.andross.arwing.com",
"authToken:" "imp_46436454_3452345345dgdg3q5345dsgdgsdg_=dev_fmccloud_420"
}Reset User Password ¶
Sends password reset email to user
Reset User PasswordPUT/users/{id}/resetPassword
Example URI
- id
string(required)ID of the User
200JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 PermissionsGET/users/{id}/permissions
Example URI
- id
string(required)ID of the User
200Headers
Content-Type: application/jsonBody
[
{
"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 PermissionsPUT/users/{id}/permissions
Example URI
- id
string(required)ID of the User
Headers
Content-Type: application/jsonBody
[
{
"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
}
]
200JSON representation of the User Resource
Headers
Content-Type: application/jsonBody
{
"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 InfoGET/users/me/{?selector}
‘selector’ expects email/permissions value in parameter if required
Example URI
- selector
string(optional) Example: email%2CfirstName%2CuserName, permissions(center(module)%2Crole)%2CsiteAdminSelector ID
200Body
{
"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 TypesGET/users/types
Example URI
- selector
string(optional) Example: id,name,fields(id,required,sortOrder,baseField(id))Selector ID
200Body
[
{
"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 TypeGET/users/types/{id}?{selector}
Example URI
- id
string(required)ID of the User Type
- selector
string(optional) Example: id,name,fields(id,required,sortOrder,baseField(id))Selector ID
200Body
{
"id": 8,
"fields": [],
"name": "Client"
}Create New User TypePOST/users/types
This API creates new User Type
Example URI
Headers
Content-Type: application/jsonBody
{
"fields": [],
"name": "Client"
}201Body
{
"dateCreated": 1680535828250,
"name": "Client",
"id": 8
}Update/Remove User TypePUT/users/types/
- active (optional, boolean,
false) … Set it to false to remove a User Type
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Client",
"id": 8,
"fields": [],
"active": false
}200Body
{
"name": "Client",
"id": 8,
"dateUpdated": 1680536803197
}User Fields ¶
Fields related resources of iOffice API
Retrieve Collection of User FieldsGET/fields
Example URI
- mappingCode
string(required) Example: categoryDepth or building
200Body
[
{
"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 FieldPUT/fields
Example URI
Headers
Content-Type: application/jsonBody
{
"id": 385,
"name": "My test"
}200Body
{
"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 VisitorGET/visitors/{id}
Example URI
- id
string(required)Visitor ID
200JSON representation of the Visitor Resource
Headers
Content-Type: application/jsonBody
{
"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 VisitorPOST/visitors/registrations/{id}/checkin
Example URI
- id
string(required)Registration ID
200Body
{
"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 VisitorsPOST/visitors/registrations/batch/checkin
Example URI
Headers
Content-Type: application/jsonBody
{
"visitors": [
{
"registrationId": 3374
},
{
"registrationId": 3361
}
]
}200Pre-register a visitor ¶
Pre-register a VisitorPOST/visitors/registrations/preregister
Example URI
Headers
Content-Type: application/jsonBody
{
"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
}200Body
{
"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 TypesGET/visitors/types/stringIcon/
Example URI
200Body
{
"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 TypePOST/visitors/types/stringIcon/
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "NewGuest",
"active": true,
"iconUid": "23265"
}200Body
{
"status": "ok",
"response": {
"id": 5248
}
}Update/Remove Visitor TypePUT/visitors/types/stringIcon/
- active (optional, boolean,
false) … Set it to false to remove a Visitor Type
Example URI
Headers
Content-Type: application/jsonBody
{
"id": {
"id": 5248
},
"name": "NewGuestEdited",
"active": true,
"iconUid": "23265"
}200Body
{
"status": "ok",
"response": 1
}Move ¶
Move-related resources of iOffice API
Move ¶
A single move object.
Retrieve a Single Move RequestGET/move/requests/{id}
Example URI
- id
string(required)ID of the Move Request
200JSON representation of the Move Resource
Headers
Content-Type: application/jsonBody
{
{
"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 RequestPUT/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
Headers
Content-Type: application/jsonBody
{
{
"id": 23,
"approved": true,
}
}200Body
{
"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 RequestDELETE/move/requests/{id}
Example URI
- id
string(required)ID of the User
200Body
{
{
"response": "Successfully removed"
}
}Archive a Move RequestPOST/move/requests/archive
Example URI
Headers
Content-Type: application/jsonBody
{}200Body
{
"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 RequestsGET/move/requests/{?statusId,statusCode,modifiedOrCreatedAfter}
Example URI
- statusId
number(optional) Example: 66ID of the Move status to query from
- statusCode
string(optional) Example: subCode of the Move status to query from
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- maintenanceRequestId
number(optional) Example: 14944ID of the Maintenance to query from
200JSON representation of the Move Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"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 RequestPOST/move/requests
- The following attributes are required to create a Move Request: status
idanddescription.
Example URI
Headers
Content-Type: application/jsonBody
{
"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
}201Body
{
"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 ItemGET/move/requests/items/{id}
Example URI
- id
string(required)ID of the Move Request Item
200JSON representation of the Move Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/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
- id
string(required)ID of the Move Request Item
Headers
Content-Type: application/jsonBody
{
{
"id": 23,
"name": 'New Name',
}
}200Remove a Move Request ItemDELETE/move/requests/items/{id}
Example URI
- id
string(required)ID of the Move Request Item
200Body
{
{
"response": "Successfully removed"
}
}Create a Move Request ItemPOST/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
Headers
Content-Type: application/jsonBody
{
"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"
},
}201Body
{
"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 ItemsGET/move/requests/items/{?requestId}
Example URI
- requestId
number(optional) Example: 210Retrieves all move request items associated with the move request specified by the parameter.
200JSON representation of the Move Item Resource
Headers
Content-Type: application/jsonBody
[
{
"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 RequestGET/move/requests/archived/{id}
Example URI
- id
String(required)ID of the archived move request
200JSON representation of the Archived Move Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestsGET/move/requests/archived/{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified/created items in the collection.
200JSON representation of the archived move collection resource
Headers
Content-Type: application/jsonBody
[
{
"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 ItemGET/move/requests/items/archived/{id}
Example URI
- id
string(required)ID of the Archived Move Request Item
200JSON representation of the Archived Move Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemsGET/move/requests/items/archived/{?requestId}
Example URI
- requestId
number(optional) Example: 209Retrieves all archived move request items associated with the archived move request specified by the parameter.
200JSON representation of the Archived Move Request Item resource.
Headers
Content-Type: application/jsonBody
[
{
"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 IdsGET/move/statuses
Example URI
200Headers
Content-Type: application/jsonBody
[
{
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 IdsGET/move/requestTypes
Example URI
200Headers
Content-Type: application/jsonBody
[
{
"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 TasksGET/move/tasks
Example URI
200Headers
Content-Type: application/jsonBody
[
{
"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 PlansGET/move/plans
This API retrieves the details of all Move Plans from Stacking Diagram Page
Example URI
200Body
[
{
"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 PlanGET/move/plans/{planId}
This API retrieves the details of single Move Plan from Stacking Diagram Page
Example URI
- planId
number(required) Example: 70Plan ID
200Body
{
"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 PlanPOST/move/plans
The following attributes are required to create a Move Plan
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Rainforest SiteAdmin1234's Plan",
"center": {
"id": 77
},
"depth": {
"id": 1
},
"changes": []
}201Body
{
"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 PlanPUT/move/plans/{id}
The following attributes are required to edit a Move Plan
Example URI
- id
string(required) Example: 287ID 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 } ] }
-
201Body
{
"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 PlanDELETE/move/plans/{id}
Example URI
- id
string(required) Example: 287ID of the Move Plan
200Body
{
"response": "Successfully removed"
}Move Approvals ¶
Move Approvals related resources of iOffice API
Retrieve Move StatusesGET/approvals
This API retrieves the details of all Move Statuses from Move Approvals Page
Example URI
200Body
[
{
"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 TemplatesGET/approvals/templates
This API retrieves the details of all Move Templates from Move Approvals Page
Example URI
200Body
[
{
"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 TemplatePOST/approvals/templates
The following attributes are required to create a Move Template
Example URI
Headers
Content-Type: application/jsonBody
{
"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 TemplatePUT/approvals/templates
The following attributes are required to edit a Move Template
Example URI
Headers
Content-Type: application/jsonBody
{
"id": 381,
"name": "demo1"
}200Body
{
"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 TemplateDELETE/approvals/templates/{id}
Example URI
- id
string(required) Example: 287ID of the Move Template
200Body
{
"response": "Successfully removed"
}Mail ¶
Mail-related resources of iOffice API
Mail ¶
A single mail item object.
Retrieve a Single Mail ItemGET/mail/items/{id}
Example URI
- id
string(required)ID of the Mail Item
200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/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
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"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
},
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemDELETE/mail/items/{id}
Example URI
- id
string(required)ID of the Mail Item
200Body
{
{
"response": "Successfully removed"
}
}Deliver a Mail ItemPUT/mail/items/{id}/deliver
To deliver a single Mail Item send JSON with the required attributes.
Example URI
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"itemType": "INTEROFFICE",
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"id": 1906,
"trackingNumber": "351987984"
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemsPUT/mail/items/deliver
To deliver many Mail Items send JSON with the required attributes.
Example URI
Headers
Content-Type: application/jsonBody
[
{
"itemType": "INTEROFFICE",
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"id": 1906,
"trackingNumber": "351987984"
},
...
]200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/mail/items/{id}/checkout
To checkout a single Mail Item send JSON with the required attributes.
Example URI
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"itemType": "INTEROFFICE",
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"id": 1906,
"trackingNumber": "351987984"
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/mail/items/{id}/pending
To pend a Mail Item send JSON with the required attributes.
Example URI
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"itemType": "INTEROFFICE",
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"id": 1906,
"trackingNumber": "351987984"
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/mail/items/{id}/transfer
To transfer a Mail Item send JSON with the required attributes.
Example URI
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"itemType": "INTEROFFICE",
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"id": 1906,
"trackingNumber": "351987984"
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPUT/mail/items/{id}/addComment
To add a Comment to a Mail Item send JSON with the required attributes.
Example URI
- id
string(required)ID of the Mail Item
Headers
Content-Type: application/jsonBody
{
"comment: "This is a comment!",
}200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemsGET/mail/items/{?search,modifiedOrCreatedAfter}
Example URI
- search
number(optional) Example: 351987984Number to search for mail item by id, trackingNumber, or originalTrackingNumber
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Items Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
]
Check In one or many Mail ItemsPOST/mail/items/checkin
To Check In one or many Mail Items send JSON with the required attributes.
Example URI
Headers
Content-Type: application/jsonBody
[
{
"itemType": "OUTBOUND",
"packageType": {
"id": 1
},
"center": {
"id": 62
},
"fromUser": {
"id": 13
},
"toUser": {
"id": 126
},
"trackingNumber": "351987984"
},
...
]200JSON representation of the Mail Item Resource
Headers
Content-Type: application/jsonBody
{
"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 IDsGET/mail/items/ids{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Item ID resource.
Headers
Content-Type: application/jsonBody
[
1234,
5678,
9012,
3456,
7890
]Delivered Mail Items ¶
Collection of all Delivered Mail Items.
Retrieve Delivered Mail ItemsGET/mail/items/delivered{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Delivered Mail Items Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Package Types ¶
Collection of all Mail Package Types.
Retrieve Package TypesGET/mail/packageTypes{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Package Types resource.
Headers
Content-Type: application/jsonBody
[
{
"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 StopsGET/mail/mailstops{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Stops resource.
Headers
Content-Type: application/jsonBody
[
{
"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 TypesGET/mail/types{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Routes resource.
Headers
Content-Type: application/jsonBody
[
{
"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 RoutesGET/mail/routes{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Routes resource.
Headers
Content-Type: application/jsonBody
[
{
"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 LocationsGET/mail/locations{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Locations resource.
Headers
Content-Type: application/jsonBody
[
{
"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 AlertsGET/mail/alerts{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Alerts resource.
Headers
Content-Type: application/jsonBody
[
{
"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 DeliveriesGET/stats/leaderboards/deliveries{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Leaderboards for Deliveries resource.
Headers
Content-Type: application/jsonBody
[
{
"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-InsGET/stats/leaderboards/check-ins{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Mail Leaderboards for Check-Ins resource.
Headers
Content-Type: application/jsonBody
[
{
"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 ContactGET/contacts/{id}
Example URI
- id
string(required)ID of the Contact
200JSON representation of the Contact Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Edit a ContactPUT/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
- id
string(required)ID of the Contact
Headers
Content-Type: application/jsonBody
{
"id": 23,
"attributeName": "value"
}200JSON representation of the Contact Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Remove a ContactDELETE/contacts/{id}
Example URI
- id
string(required)ID of the Contact
200Body
{
{
"response": "Successfully removed"
}
}Contact Collection ¶
Collection of all Contacts.
List of all ContactsGET/contacts{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Contact Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a ContactPOST/contacts
To create a Contact send JSON with the values the new contact should have.
Example URI
201JSON representation of the Contact Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Building ¶
Building-related resources of iOffice API
Building ¶
A single building object.
Retrieve a Single BuildingGET/buildings/{id}
Example URI
- id
string(required)ID of the Building
200JSON representation of the Building Resource
Headers
Content-Type: application/jsonBody
{
"id": 43,
"address": {...},
"name": "Mystery Inc.",
"code": "mystery"
}Edit a BuildingPUT/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
- 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": [] }
-
200Body
{
"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 BuildingDELETE/buildings/{id}
Example URI
- id
string(required)ID of the Building
200Body
{
{
"response": "Successfully removed"
}
}Building Collection ¶
Collection of all Buildings.
List of all BuildingsGET/buildings/{?includeReservable,includeNonReservable,locationSearch,nearLatitude,nearLongitude,modifiedOrCreatedAfter,module}
Example URI
- includeReservable
boolean(optional) Example: trueIf true, query will include buildings with reservable rooms
- includeNonReservable
boolean(optional) Example: falseIf true, query will include buildings with non-reservable rooms
- locationSearch
string(optional) Example: houston txWill do a location lookup based on the search string.
- nearLatitude
number(optional) Example: 29.75613Latitude to base search on (50 mile radius)
- nearLongitude
number(optional) Example: -95.39425Longitude to base search on (50 mile radius)
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- module
string(optional) Example: maintenanceselected Module in which buildings displayed.
200JSON representation of the Building Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a BuildingPOST/buildings/
The following attribute is required to create a Building: name.
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "testbuilding1234",
"city": "testcity1",
"address": {
"country": {
"id": 223
}
},
"state": {
"id": 14
}
}201Body
{
"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 CountryGET/countries/{id}
Example URI
- id
string(required)ID of the Country
200JSON representation of the Country Resource
Headers
Content-Type: application/jsonBody
{
"id": 223,
"defaultSelected": true,
"name": "United States"
}Edit a CountryPUT/countries/{id}
Countries cannot be modified.
Example URI
- id
string(required)ID of the Country
500Remove a CountryDELETE/countries/{id}
Example URI
- id
string(required)ID of the Country
200Body
{
{
"response": "Successfully removed"
}
}Country Collection ¶
Collection of all Countries.
List of all CountriesGET/countries{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Country Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a CountryPOST/countries
Countries cannot be modified.
Example URI
500JSON representation of the Country Resource
Headers
Content-Type: application/jsonBody
{
"id": 223,
"defaultSelected": true,
"name": "United States"
}Floor ¶
Floor-related resources of iOffice API
Floor ¶
A single floor object.
Retrieve a Single FloorGET/floors/{id}
Example URI
- id
string(required)ID of the Floor
200JSON representation of the Floor Resource
Headers
Content-Type: application/jsonBody
{
"id": 5,
"building": {...},
"area": 2000,
"name": "1st Floor"
}Edit a FloorPUT/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
- id
string(required)ID of the Floor
Headers
Content-Type: application/jsonBody
{
"id": 5,
"name": "2nd Floor"
}200JSON representation of the Floor Resource
Headers
Content-Type: application/jsonBody
{
"id": 5,
"building": {...},
"area": 2000,
"name": "1st Floor"
}Remove a FloorDELETE/floors/{id}
Example URI
- id
string(required)ID of the Floor
200Body
{
{
"response": "Successfully removed"
}
}Floor Collection ¶
Collection of all Floors.
List of all FloorsGET/floors/{?buildingId,modifiedOrCreatedAfter}
Example URI
- buildingId
number(optional) Example: 3Id of building to base query
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Floor Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a FloorPOST/floors/{?buildingId,modifiedOrCreatedAfter}
The following attributes are required to create a Floor: name and building.
Example URI
- buildingId
string(optional)Id building to query from
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
Headers
Content-Type: application/jsonBody
{
"name": "3rd Floor",
"building": {
"id": 45
}
}201JSON representation of the Floor Resource
Headers
Content-Type: application/jsonBody
{
"id": 5,
"building": {...},
"area": 2000,
"name": "1st Floor"
}Annotations ¶
Retrieve AnnotationsGET/floors/annotation
Example URI
- floorId
number(required) Example: 12Id of Floor
- limit (optional, number,
2)
- limit (optional, number,
- selector
string(required) Example: type%2Ctext%2Clayer%2Cfxg
200Body
[
{
"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 AnnotationPOST/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
Headers
Content-Type: application/jsonBody
{
"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"
}
}201Body
{
"dateCreated": 1671014536856,
"name": "SquareShape",
"id": 1197
}Update AnnotationPOST/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
Headers
Content-Type: application/jsonBody
{
"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
}
}200Body
{
"name": "NewShapess",
"id": 1194,
"dateUpdated": 1671094453187
}Delete AnnotationDELETE/floors/annotation/{id}
Example URI
- id
number(required) Example: 1197ID of the Shape/Polygon/Text
200Body
{
"response": "Successfully removed"
}Layers ¶
Retrieve LayersGET/floors/annotation/layers
Example URI
- floorId
number(required) Example: 12Id of Floor
- limit (optional, number,
2)
- limit (optional, number,
- selector
string(required) Example: drawing,availability,enteredBy
200Body
[
{
"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 LayerPOST/floors/annotation/layers
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "NewLayer",
"availability": "EVERYONE",
"drawing": {
"id": 39
}
}201Body
{
"dateCreated": 1671095761328,
"name": "NewLayer",
"id": 62
}Update LayerPOST/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
Headers
Content-Type: application/jsonBody
{
"id": 62,
"name": "NewLayerss",
"availability": "EVERYONE"
}200Body
{
"name": "NewLayerss",
"id": 62,
"dateUpdated": 1671095766360
}Delete LayerDELETE/floors/annotation/layers/{id}
Example URI
- id
number(required) Example: 58Id of the Layer
200Body
{
"response": "Successfully removed"
}Markers ¶
Place MarkersPUT/floors/markers
Example URI
Headers
Content-Type: application/jsonBody
{
"id": 429,
"position": {
"x": 1232.6363636365732,
"y": 901.3686868689745
}
}200Body
{
"dateCreated": 1572466544443,
"id": 429,
"dateUpdated": 1670871013942
}Edit MarkersPUT/floors/markers/types/
Example URI
Headers
Content-Type: application/jsonBody
{
"hexColor": "BEA5FA",
"dateCreated": 1559926966786,
"name": "WAYFINDING",
"description": "",
"iconUid": "ios7:pioneer-wagon",
"markerTypeGroup": {
"id": 18
},
"id": 19,
"dateUpdated": 1582233086343
}200Body
{
"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 GroupPOST/floors/markers/groups
Example URI
- selector
string(required) Example: availability%2Ccode%2Cdescription%2CvisibleByDefault
Headers
Content-Type: application/jsonBody
{
"visibleByDefault": false,
"availability": "EVERYONE",
"name": "NewMarkerGroup",
"description": ""
}201Body
{
"code": "NEWMARKERGROUP",
"visibleByDefault": false,
"name": "NewMarkerGroup",
"description": "",
"availability": "EVERYONE",
"id": 88
}Update Marker GroupPOST/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
- selector
string(required) Example: availability%2Ccode%2Cdescription%2CvisibleByDefault
Headers
Content-Type: application/jsonBody
{
"code": "NEWMARKERGROUP",
"visibleByDefault": false,
"name": "NewMarkerGroups",
"description": "",
"availability": "EVERYONE",
"id": 88
}200Body
{
"code": "NEWMARKERGROUPS",
"visibleByDefault": false,
"name": "NewMarkerGroups",
"description": "",
"availability": "EVERYONE",
"id": 88
}Delete Marker GroupDELETE/floors/markers/groups/{id}
Example URI
- id
number(required) Example: 88Id of the Marker Group
200Body
{
"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 RoomGET/rooms/{id}
Example URI
- id
string(required)ID of the Room
200JSON representation of the Room Resource
Headers
Content-Type: application/jsonBody
{
"id": 52927,
"floor": {...},
"reservable": true,
"name": "010211"
}Edit a RoomPUT/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
- id
string(required)ID of the Room
Headers
Content-Type: application/jsonBody
{
"id": 23,
"type": {
"id": 55
}
}200JSON representation of the Room Resource
Headers
Content-Type: application/jsonBody
{
"id": 52927,
"floor": {...},
"reservable": true,
"name": "010211"
}Remove a RoomDELETE/rooms/{id}
Example URI
- id
string(required)ID of the Room
200Body
{
{
"response": "Successfully removed"
}
}Room Collection ¶
Collection of all Rooms.
List of all RoomsGET/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
- includeReservable
boolean(optional) Example: trueIf true, query will include reservable rooms
- includeNonReservable
boolean(optional) Example: falseIf true, query will include non-reservable rooms
- includeOccupiable
boolean(optional) Default: true Example: trueIf true, query will include occupiable rooms (requires type parameter to be set)
- includeNonOccupiable
boolean(optional) Default: true Example: falseIf true, query will include non-occupiable rooms (requires type parameter to be set)
- locationSearch
string(optional) Example: houston txWill do a location lookup based on the search string.
- room
string(optional) Example: workstationWill do a filter based on room name, room description, room type, reservation description
- nearLatitude
number(optional) Example: 29.75613Latitude to base search on (50 mile radius)
- nearLongitude
number(optional) Example: -95.39425Longitude to base search on (50 mile radius)
- startDate
number(optional) Example: 1404410211910Epoch time (milliseconds) of room availability start date
- endDate
number(optional) Example: 1404421051661Epoch time (milliseconds) of room availability end date
- numberOfPeople
number(optional) Example: 6Number to search for room by maximum occupancy
- includeParking
boolean(optional) Example: trueIf true, query will include rooms with parking spaces
- buildingId
number(optional) Example: 44Id of building to search in
- floorId
number(optional) Example: 3443Id of floor to search on
- type
number(optional) Example: 65 or 65,32,79Id of room type to search for (can accept a comma delimited series of Ids)
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Room Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a RoomPOST/rooms/
The following attributes are required to create a Room: name, floor, and type.
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "room 101",
"floor": {
"id": 16
},
"type": {
"id": 44
}
}201JSON representation of the Room Resource
Headers
Content-Type: application/jsonBody
{
"id": 52927,
"floor": {...},
"reservable": true,
"name": "010211"
}Room Types ¶
Collection of all Room Types.
List of all Room TypesGET/rooms/types/{?includeReservable,includeNonReservable,includeOccupiable,includeNonOccupiable,includeParking,modifiedOrCreatedAfter,limit,orderBy,selector}
Example URI
- includeReservable
boolean(optional) Example: trueIf true, query will include reservable room types
- includeNonReservable
boolean(optional) Example: falseIf true, query will include non-reservable room types
- includeOccupiable
boolean(optional) Example: trueIf true, query will include occupiable room types
- includeNonOccupiable
boolean(optional) Example: falseIf true, query will include non-occupiable room types
- includeParking
boolean(optional) Example: falseIf true, query will include parking room types
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection
- limit
number(optional) Example: 206Reservations List limit to query from
- orderBy
string(optional) Example: sortOrderSort order for records
- selector
string(required) Example: rulesSelector ID
200JSON representation of the Room Types resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
"name":"Office",
"sortOrder":5
}
]Room Types CountGET/rooms/types/count
This API returns count of room types
Example URI
200Body
{
"count": 206
}Asset ¶
Asset-related resources of iOffice API
Asset ¶
A single asset object.
Retrieve a Single AssetGET/assets/{id}
Example URI
- id
string(required)ID of the Asset
200JSON 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/jsonBody
{
"id": 11,
"model": {...},
"managed": false,
"boxLength": "STRING",
"titleLocation": "STRING",
"name": "Computer",
"dateCreated": 1382994855640,
"active": "BOOLEAN",
"room": {...},
"owner": {...}
"dateUpdated": 1382994855640
}Edit a AssetPUT/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
- id
string(required)ID of the Asset
Headers
Content-Type: application/jsonBody
{
"id": 11,
"printerName": "NEW PRINTER TEST NAME"
}200JSON 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/jsonBody
{
"id": 11,
"model": {...},
"managed": false,
"boxLength": "STRING",
"titleLocation": "STRING",
"name": "Computer",
"dateCreated": 1382994855640,
"active": "BOOLEAN",
"room": {...},
"owner": {...}
"dateUpdated": 1382994855640
}Remove an AssetDELETE/assets/{id}
Example URI
- id
string(required)ID of the Asset
200Body
{
{
"response": "Successfully removed"
}
}Asset Collection ¶
Collection of all Assets.
List of all AssetsGET/assets/{?search,searchSerialNumber,typeId,buildingId,floorId,roomId,owner,modifiedOrCreatedAfter}
Example URI
- search
string(optional) Example: appleString to search for asset by model name, owner name, room name, localUID, or serialNumber
- searchSerialNumber
string(optional) Example: 11111111Search 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: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection
200JSON representation of the Asset Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":11
...
},
{
"id":12
...
},
{
"id":13
...
}
]Create a AssetPOST/assets/
NOTE: An Asset Model id is required for creating an Asset.
Example URI
Headers
Content-Type: application/jsonBody
{
"model": {
"id": 454
}
}201JSON 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/jsonBody
{
"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 AssetPUT/assets/{id}/verify
Example URI
- id
string(required)Id of the Asset
204Attach Asset Image ¶
Attach an image to a asset
Attach an Image to a AssetPOST/assets/{id}/attachImage
Example URI
- id
string(required)Id of the Asset
Headers
Content-Type: application/jsonBody
{
"image": "BASE-64-IMAGE-STRING"
}200JSON representation of an attachment object
Headers
Content-Type: application/jsonBody
{
"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 TypeGET/assets/types/{id}
Example URI
- id
string(required)ID of the Asset Type
200JSON representation of the Asset Type Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1572645873930,
"unitPriceEnabled": true,
"name": "Computers",
"active": true,
"meteringEnabled": true,
"id": 46,
"dateUpdated": 1572645873930
}Edit an Asset TypePUT/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
- id
string(required)ID of the Asset Type
Headers
Content-Type: application/jsonBody
{
"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
}
]
}200JSON representation of the Asset Type Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1572645873930,
"unitPriceEnabled": true,
"name": "Computers",
"active": true,
"meteringEnabled": true,
"id": 46,
"dateUpdated": 1572645873930
}Remove an Asset TypeDELETE/assets/types/{id}
Example URI
- id
string(required)ID of the Asset Type
200Body
{
{
"response": "Successfully removed"
}
}Asset Type Collection ¶
List of all Asset TypesGET/assets/types/{?savedSearchId}
Example URI
- savedSearchId
string(optional)Saved Search Id used to filter Asset Types list.
200JSON representation of the Asset Type Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"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 TypePOST/assets/types/
The following attributes are required to create an Asset Type: name, meteringEnabled, unitPriceEnabled, centerLinks with at least one Center.
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Computers",
"meteringEnabled": true,
"unitPriceEnabled": true,
"centerLinks": [
{
"center": {
"name": "Test Asset",
"id": 78
}
}
]
}201JSON representation of the Asset Type Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1572645873930,
"unitPriceEnabled": true,
"name": "Computers",
"active": true,
"meteringEnabled": true,
"id": 46,
"dateUpdated": 1572645873930
}Quick Search ¶
Asset Types Quick SearchPOST/assets/types/quicksearch
Gets a collection of Asset Types filtered by the search object posted.
Note:
-
matchingType = true -> Match all filters.
-
matchingType = false -> Match any filter.
Example URI
Headers
Content-Type: application/jsonBody
{
"availability": "EVERYONE",
"filters": [
{
"qualifier": "CONTAINS",
"valueString": "Computer",
"isEditMode": true,
"propertyPath": "name",
"name": ""
}
],
"itemClassName": "com.iofficeconnect.asset.AssetType",
"matchingType": false,
"name": ""
}200JSON representation of the Asset Type Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"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
...
}
]Asset Model Collection ¶
Asset Model
List of all Asset ModelsGET/assets/models
Example URI
200JSON representation of an attachment type object
Headers
Content-Type: application/jsonBody
[
{
"id": 11,
...
},
{
"id":12
...
},
{
"id":13
...
}
]Meter Types ¶
List of all Meter TypesGET/assets/types/metertypes
Example URI
200JSON representation of the Asset Meter Type Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"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 ReservationGET/reservations/{id}
Example URI
- id
string(required)ID of the Reservation
200JSON representation of the Reservation Resource
Headers
Content-Type: application/jsonBody
{
"id": ID,
"center": {...},
"numberOfPeople": INT,
"allDay": "BOOLEAN",
"checkedIn": "BOOLEAN",
"checkedOut": "BOOLEAN",
"notes": "STRING"
"madeInIoffice": "BOOLEAN",
"name": "STRING",
"user": {...},
"dateUpdated": EPOCH_TIME,
"room": {...}
}Edit a ReservationPUT/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
- id
string(required)ID of the Reservation
Headers
Content-Type: application/jsonBody
{
"id": 23,
"user": {
"id": 56
}
}200JSON representation of the Reservation Resource
Headers
Content-Type: application/jsonBody
{
"id": ID,
"center": {...},
"numberOfPeople": INT,
"allDay": "BOOLEAN",
"checkedIn": "BOOLEAN",
"checkedOut": "BOOLEAN",
"notes": "STRING"
"madeInIoffice": "BOOLEAN",
"name": "STRING",
"user": {...},
"dateUpdated": EPOCH_TIME,
"room": {...}
}Remove a ReservationDELETE/reservations/{id}
Example URI
- id
string(required)ID of the Reservation
200Body
{
{
"response": "Successfully removed"
}
}Reservation Collection ¶
Collection of all Reservations.
List of all ReservationsGET/reservations/{?includeCancelled,includePastReservations,includeNonCancelled,showOnlyMyReservations,startDate,endDate,buildingId,roomId,modifiedOrCreatedAfter,selector,startAt}
Example URI
- includeCancelled
boolean(optional) Default: false Example: trueIf true, query will include cancelled reservations
- includeNonCancelled
boolean(optional) Default: true Example: falseIf true, query will include non-cancelled reservations
- includePastReservations
boolean(optional) Default: false Example: trueIf true, query will include past reservations
- showOnlyMyReservations
boolean(optional) Default: true Example: falseIf true, query will only include logged in user’s reservations
- startDate
number(optional) Example: 1404410211910Epoch time (milliseconds) of reservation start date
- endDate
number(optional) Example: 1404421051661Epoch time (milliseconds) of reservation end date
- buildingId
number(optional) Example: 44Id of the building to query from
- limit
number(optional) Example: 500Reservations List limit to query from
- roomId
number(optional) Example: 16Id of the room to query from
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection
- selector
string(optional) Example: allDaySelector ID
- startAt
number(optional) Example: 0Start at
200JSON representation of the Reservation Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a ReservationPOST/reservations/
The following attributes are required to create a Reservation: startDate, endDate, user, room, center, and allDay.
Example URI
Headers
Content-Type: application/jsonBody
{
"startDate": EPOCH_TIME,
"endDate": EPOCH_TIME
"numberOfPeople": INT,
"allDay": "BOOLEAN",
"name": "STRING",
"center": {...},
"user": {...},
"guests": [..],
"room": {...},
"notes": "STRING"
}201JSON representation of the Reservation Resource
Headers
Content-Type: application/jsonBody
{
"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 ReservationPUT/reservations/{id}/cancel/{?page}
Example URI
- id
string(required) Example: 1111ID of the Reservation
- page
string(required) Example: ReservationDetailsPageName of page that has reservation listed
200Body
{
"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 InPUT/reservations/{id}/checkIn
Example URI
- id
string(required)ID of the Reservation
200JSON representation of the Reservation Resource
Headers
Content-Type: application/jsonBody
{
"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 OutPUT/reservations/{id}/checkOut
Example URI
- id
string(required)ID of the Reservation
200JSON representation of the Reservation Resource
Headers
Content-Type: application/jsonBody
{
"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 RulePUT/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
- selector
string(required) Example: rulesSelector ID (returns exact response with ‘rules’)
Headers
Content-Type: application/jsonBody
{
"centerId": 82,
"ruleList": [
{
"value": "1510m",
"$type$": "MaxDuration"
},
{
"roomTypeId": 52,
"$type$": "OnlyDuringWorkHours"
},
{
"$type$": "MaxLeadTime",
"value": "1580m",
"roomId": 41932
},
{
"$type$": "IncludeAllMembers",
"value": "true",
"neighborhoodId": 41
}
]
}200Body
{
"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 QueueGET/maintenance/priorities/earliestRequiredDate/{?centerId,typeId}
This API retrieves the details of ticket to create from Reservation Queue page
Example URI
- centerId
number(required) Example: 70Center ID
- typeId
number(required) Example: 215Type ID
200Body
[
{
"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 RequestGET/maintenance/requests/{id}
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPOST/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
- id
string(required)ID of the Request
Headers
Content-Type: application/jsonBody
{
"dateRequired": EPOCH_TIME,
"requester": {
"id": REQUESTER_ID,
},
"type": {
"id": TYPE_ID,
},
"priority": {
"id": PRIORITY_ID,
},
"room": {
"id": ROOM_ID,
}
}201JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/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
- id
string(required)ID of the Request
Headers
Content-Type: application/jsonBody
{
"id": 23,
"room": {
"id": 5
}
}200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestDELETE/maintenance/requests/{id}
Example URI
- id
string(required)ID of the Request
200Body
{
"response": "Request cancelled"
}Request StatisticsGET/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
200Body
{
"assignedCount": INT
"highPriorityCount": INT
"lowPriorityCount": INT
"pastDueCount": INT
"totalCount": INT
}Add a comment to a RequestPOST/maintenance/requests/{id}/addComment
Add a comment to a request
Example URI
- id
string(required)Id of the Request
Headers
Content-Type: application/jsonBody
{
"comment": "Your new comment string"
}200Body
{
"comments": "<div class='Content'>YOUR COMMENT</div></div>"
}Attach an Image to a RequestPOST/maintenance/requests/{id}/attachImage
Attach an image to a request
Example URI
- id
string(required)Id of the Request
Headers
Content-Type: application/jsonBody
{
"image": "BASE-64-IMAGE-STRING"
}200Body
{
"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 RequestPUT/maintenance/requests/{id}/accept
** User must be a valid operator**
Set operator’s status for a request as accepted.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/maintenance/requests/{id}/reject
** User must be a valid operator**
Set operator’s status for a request as rejected.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/maintenance/requests/{id}/start
** User must be a valid operator**
Set operator’s status for a request as started.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/maintenance/requests/{id}/hold
** User must be a valid operator**
Set operator’s status for a request as on hold.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/maintenance/requests/{id}/resume
** User must be a valid operator**
Set operator’s status for a request as resumed.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPUT/maintenance/requests/{id}/addResolution
** User must be a valid operator**
Add Resolution Note before Completing Request
Example URI
- id
string(required)ID of the Request
Headers
Content-Type: application/jsonBody
{
"resolution": "Resolved Ticket",
"operator": {
"id": 11855
}
}200Body
{
"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 RequestPUT/maintenance/requests/{id}/complete
** User must be a valid operator**
Set operator’s status for a request as complete.
Example URI
- id
string(required)ID of the Request
200JSON representation of the Request Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestPOST/maintenance/requests/{id}/archive
Example URI
- id
string(required)ID of the Request
200Body
{}Archived Requests ¶
A single archived maintenance request
Retrieve a single Archived RequestGET/maintenance/requests/archived/{id}
Example URI
- id
String(required)ID of the archived maintenance request
200JSON representation of the Archived Maintenance Resource
Headers
Content-Type: application/jsonBody
{
"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 RequestsGET/maintenance/requests/archived/{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified/created items in the collection.
200JSON representation of the Archived Maintenance Resource
Headers
Content-Type: application/jsonBody
[
{
"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 RequestsGET/maintenance/requests/{?priority,assigned,pastDue,requestTypeId,modifiedOrCreatedAfter,limit,orderBy,orderByType,showOnlyMyRequests,selector}
Example URI
- priority
string(optional)Query for high or low priority tickets:
high (sortOrder less than or equal to 2)
low (sortOrder greater than 2)
Choices:
lowhigh- 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: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- limit
number(optional) Example: 5Request 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.
200JSON representation of the Requests Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 TypeGET/maintenance/types/{id}
Example URI
- id
string(required)ID of the Request Type
200JSON representation of the Request Type Resource
Headers
Content-Type: application/jsonBody
{
"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 TypePOST/maintenance/types/{id}
The following attributes are required to create a Request Type: product and name.
Example URI
- id
string(required)ID of the Request Type
Headers
Content-Type: application/jsonBody
{
"name": "Ship Wing Repair",
"Product": {
"id": 78
},
}201JSON representation of the Request Type Resource
Headers
Content-Type: application/jsonBody
{
"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 TypePUT/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
Headers
Content-Type: application/jsonBody
{
"id": 1041,
"iconUid": "external-flaticons-lineal-color-flat-icons:external-pin-sewing-flaticons-lineal-color-flat-icons-2"
}200Body
{
"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 TypeDELETE/maintenance/types/{id}
Example URI
- id
string(required)ID of the Request Type
200Body
{
"response": "Successfully removed"
}Request Types Collection ¶
Collection of all Request Types.
List of all Request TypesGET/maintenance/types{?modifiedOrCreatedAfter,centerId}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- centerId
number(optional) Example: 70Id of center to query from.
200JSON representation of the Request Type Resource
Headers
Content-Type: application/jsonBody
[
{
"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 TypesGET/maintenance/types/recent{?modifiedOrCreatedAfter,centerId,assetRequestTypesOnly}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- centerId
number(optional) Example: 70Id of center to query from.
- assetRequestTypesOnly
boolean(optional) Example: falseIf Request is Asset Type then assetRequestTypesOnly should be true.
200JSON representation of the Requests Types Recent Requests Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 TypesGET/maintenance/types/recent{?modifiedOrCreatedAfter,centerId,assetRequestTypesOnly}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
- centerId
number(optional) Example: 70Id of center to query from.
- assetRequestTypesOnly
boolean(optional) Example: falseIf Request is Asset Type then assetRequestTypesOnly should be true.
200JSON representation of the Requests Types Common Requests Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 DateGET/maintenance/types/{id}/earliestSlaDate/{?centerId,startDate,modifiedOrCreatedAfter}
Example URI
- id
number(required)Request Type Id
- centerId
number(required)Request’s Center Id
- startDate
number(required)Request’s Start Date
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200Headers
Content-Type: application/jsonBody
{
"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 TaskGET/maintenance/scheduled/{id}
Example URI
- id
string(required)ID of the Scheduled task
200JSON representation of the Scheduled task Resource
Headers
Content-Type: application/jsonBody
[
{
"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 TaskPOST/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
- id
string(required)ID of the Scheduled task
Headers
Content-Type: application/jsonBody
[
{
"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
}
]201JSON representation of the Scheduled task Resource
Headers
Content-Type: application/jsonBody
[
{
"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 TaskPUT/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
- id
string(required)ID of the Scheduled Task
Headers
Content-Type: application/jsonBody
{
"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
}200JSON representation of the Scheduled task Resource
Headers
Content-Type: application/jsonBody
[
{
"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 TaskDELETE/maintenance/scheduled/{id}
Example URI
- id
string(required)ID of the Scheduled Task
200Body
{
"response": "Request cancelled"
}Scheduled Task Collection ¶
Collection of all Scheduled Tasks.
List of all Scheduled TaskGET/maintenance/scheduled/{?centerId,includeActive,includeInactive,orderBy,orderByType,startAt,modifiedOrCreatedAfter}
Example URI
- 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: 1549319834Epoch 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.
200JSON representation of the Scheduled Tasks Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 TaskGET/maintenance/scheduled/count{?includeActive,includeInactive,modifiedOrCreatedAfter}
Count of Scheduled Task.
Example URI
- 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: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200Body
{
"count": 634
}Category ¶
The Category resource gives access to Products from which you can derive Request Types.
A single category object.
Retrieve a Single CategoryGET/maintenance/categories/{id}
Example URI
- id
string(required)ID of the Category
- name
string(required)NAME of the Category
200JSON representation of the Category Resource
Headers
Content-Type: application/jsonBody
{
"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 CategoryPOST/maintenance/categories/{id}
The following attributes are required to create a Category: center and name.
Example URI
- id
string(required)ID of the Category
- name
string(required)NAME of the Category
Headers
Content-Type: application/jsonBody
{
"name": "Create Copier/Printer Equipment Service Request",
"center": {
"id": 70,
},
}201JSON representation of the Category Resource
Headers
Content-Type: application/jsonBody
{
"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 CategoryPUT/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
- id
string(required)ID of the Category
- name
string(required)NAME of the Category
Headers
Content-Type: application/jsonBody
{
"hidden": false,
"name": "demo1",
"id": 971,
"products": [... ]
}200JSON representation of the Category Resource
Headers
Content-Type: application/jsonBody
{
"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 CategoryDELETE/maintenance/categories/{id}
Example URI
- name
string(required)NAME of the Category
- id
string(required)ID of the Category.
200Body
{
{"response":"Successfully removed"}
}Categories Collection ¶
Collection of all Categories.
List of all CategoriesGET/maintenance/categories{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Categories Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 CategoriesGET/maintenance/categories/count{?modifiedOrCreatedAfter}
Count of Categories.
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1676615686024Epoch time (milliseconds) to poll recently modified items in the collection.
200Body
{
"count": 634
}Product ¶
A single product object.
Retrieve a Single ProductGET/maintenance/products/{id}
Example URI
- id
string(required)ID of the Product
200JSON representation of the Product Resource
Headers
Content-Type: application/jsonBody
{
"name": "QATEst",
"id": 815,
"category": {
"name": "QATest555555",
"id": 994
},
"type": "facility",
"requestTypes": [... ]
}Create a ProductPOST/maintenance/products/{id}
The following attribute is required to create a Product: name,type and category.
Example URI
- id
string(required)ID of the Product
Headers
Content-Type: application/jsonBody
{
"name": "QATEst",
"type": "facility",
"category": {
"id": 994
}
}201JSON representation of the Product Resource
Headers
Content-Type: application/jsonBody
{
"name": "QATEst",
"id": 815,
"category": {
"name": "QATest555555",
"id": 994
},
"type": "facility",
"requestTypes": [... ]
}Update a ProductPUT/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
- id
string(required)ID of the Product
Headers
Content-Type: application/jsonBody
{
"name": "QATEst",
"type": "facility",
"category": {
"id": 994
}
}200JSON representation of the Product Resource
Headers
Content-Type: application/jsonBody
{
"name": "QATEst",
"id": 815,
"category": {
"name": "QATest555555",
"id": 994
},
"type": "facility",
"requestTypes": [... ]
}Delete a ProductDELETE/maintenance/products/{id}
Example URI
- id
string(required)ID of the Product.
200Body
{
{"response":"Successfully removed"}
}Products Collection ¶
Collection of all Products.
List of all ProductsGET/maintenance/products{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Products Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 PriorityGET/maintenance/priorities/{id}
Example URI
- id
string(required)ID of the Priority
200JSON representation of the Priority Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1678427551186,
"sortOrder": 5,
"name": "Create Copier/Printer Equipment Service Request",
"id": 409,
"noticeTime": 0
}Create a PriorityPOST/maintenance/priorities/{id}
The following attributes are required to create a Priority: name and sortOrder.
Example URI
- id
string(required)ID of the Priority
Headers
Content-Type: application/jsonBody
{
"name": "Create Copier/Printer Equipment Service Request",
"sortOrder": 3,
}201JSON representation of the Priority Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1678427551186,
"sortOrder": 5,
"name": "Create Copier/Printer Equipment Service Request",
"id": 409,
"noticeTime": 0
}Update a PriorityPUT/maintenance/priorities/{id}
The following attributes are required to Update a Priority: id and name ,sortOrder,noticeTime.
Example URI
- id
string(required)ID of the Priority
Headers
Content-Type: application/jsonBody
{
"id": 409,
"sortOrder": 5,
"name": "PrashantPriority",
"noticeTime": 0
}200JSON representation of the Priority Resource
Headers
Content-Type: application/jsonBody
{
"dateCreated": 1678427551186,
"sortOrder": 5,
"name": "Create Copier/Printer Equipment Service Request",
"id": 409,
"noticeTime": 0
}Delete a PriorityDELETE/maintenance/priorities/{id}
Example URI
- id
string(required)ID of the Priority.
200Body
{
{"response":"Successfully removed"}
}Priorities Collection ¶
Collection of all Priorities.
List of all PrioritiesGET/maintenance/priorities{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Priorities Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 DateGET/maintenance/priorities/{id}/earliestRequiredDate/{?typeId,centerId}
Example URI
- id
string(required)ID of the Request.
- typeId
number(required)Request Type Id
- centerId
number(required)Request’s Center Id
200Headers
Content-Type: application/jsonBody
{
"time": 1404839102117
}Assets Collection ¶
Collection of Assets.
List of AssetsGET/maintenance/assets/{?modifiedOrCreatedAfter,limits}
Example URI
- limits
number(optional) Example: 1Assets List limit to query from
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Assets Collection Resource.
Headers
Content-Type: application/jsonBody
[
{
"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 AgreementGET/agreements/{id}
Example URI
- id
string(required)ID of the Agreement
200JSON representation of the Agreement Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Edit a AgreementPUT/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
- id
string(required)ID of the Agreement
Headers
Content-Type: application/jsonBody
{
"id": 23,
"attributeName": "value"
}200JSON representation of the Agreement Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Remove an AgreementDELETE/agreements/{id}
Example URI
- id
string(required)ID of the Agreement
200Body
{
{
"response": "Successfully removed"
}
}Agreement Collection ¶
Collection of all Agreements.
List of all AgreementsGET/agreements{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Agreement Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id":21
...
},
{
"id":22
...
},
{
"id":23
...
}
]Create a AgreementPOST/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
201JSON representation of the Agreement Resource
Headers
Content-Type: application/jsonBody
{
"id": 23,
...
}Category Item ¶
Item related resources of iOffice API
Item Collection ¶
Collection of all Items.
List of all ItemsGET/categories/items/{?category,parent,root,startAt,modifiedOrCreatedAfter}
Example URI
- category
integer(optional) Example: 1If present, query will filter by category
- parent
integer(optional) Example: 2If present, query will filter by parent
- root
boolean(optional) Default: false Example: trueIf present, query will only return Items without a parent
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch 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)
200JSON represenation of the Item Collection Resource
Headers
Content-Type: application/jsonBody
[
{
"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 ItemGET/categories/items/{id}
Example URI
- id
string(required)ID of the Item
200JSON representation of the Item Resource
Headers
Content-Type: application/jsonBody
{
"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 ItemPOST/categories/items/
The following attributes are required to create an Item:
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "new cc",
"code": "new-cc-code",
"category": {
"id": 31
}
}201Body
{
"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 ItemPUT/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
- id
string(required)ID of the Item
Headers
Content-Type: application/jsonBody
{
"id": 23,
"name": "newName",
"code": "bldg3"
}200Body
{
"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 ItemDELETE/categories/items/{id}
Example URI
- id
string(required)ID of the User
200Body
{
{
"response": "Successfully removed"
}
}Item Helpers ¶
Get an Item's childrenGET/categories/items/{id}/children
Example URI
- id
string(required)ID of the Item
200Body
[
{
"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 ItemGET/categories/items/{id}/users
Example URI
- id
string(required)ID of the Item
200Body
[
{
"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 ItemGET/categories/items/users
Example URI
200Body
[
{
"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 ItemGET/categories/items/{id}/rooms
Example URI
- id
string(required)ID of the Item
200Body
[
{
"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 ItemGET/rooms
Example URI
200Body
[
{
"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 CategoriesGET/categories{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Category Collection resource
Headers
Content-Type: application/jsonBody
[
{
"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 RuleGET/categories/type/{categoryTypeId}/{?limit,selector}
This API returns category details while adding new rule (after clicking on ‘Add Rule’ button)
Example URI
- categoryTypeId
number(optional) Example: 1Category Type Id
- limit
number(optional) Example: 79Reservations List limit to query from
- selector
string(required) Example: itemCount%2CdepthsSelector ID (returns exact response with ‘itemCount%2Cdepths’)
200Body
[
{
"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 CategoryGET/categories/{id}
Example URI
- id
string(required)ID of the Category
200JSON representation of the Category Resource
Headers
Content-Type: application/jsonBody
{
"code": "co",
"color": {},
"name": "Company",
"id": 27,
"dateUpdated": 143567975913
},Create a CategoryPOST/categories/
The following attributes are required to create a Category
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "new category",
"code": "new category code"
}200Body
{
"id": 28,
"name": "new category",
"color": {},
"code": "new category code",
"dateCreated": 1434561059383
}Edit a CategoryPUT/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
- id
string(required)ID of the Category
Headers
Content-Type: application/jsonBody
{
"id": 28,
"name": "a new name",
"code": "a new code"
}200Body
{
"id": 28,
"color": {},
"name": "a new name",
"code": "a new code",
"dateCreated": 1434561059383,
"dateUpdated": 1435679209637
}Remove a CategoryDELETE/categories/{id}
Example URI
- id
string(required)ID of the Category
200Body
{
{
"response": "Successfully removed"
}
}Category Depth ¶
Category Depth related resources of iOffice API
Depth Collection ¶
Collection of all Depths.
List of all DepthsGET/categories/depths{?modifiedOrCreatedAfter}
Example URI
- modifiedOrCreatedAfter
number(optional) Example: 1549319834Epoch time (milliseconds) to poll recently modified items in the collection.
200JSON representation of the Depth Collection Resource
Headers
Content-Type: application/jsonBody
[
{
"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 DepthGET/categories/depth/{id}
Example URI
- id
string(required)ID of the Depth
200JSON representation of the Depth Resource
Headers
Content-Type: application/jsonBody
{
"code": "d1",
"dateCreated": 1439399515923,
"level": 0,
"name": "depth one",
"id": 71,
"category": {
"code": "cat-code",
"color": {},
"name": "category one",
"id": "65"
}
}Create a DepthPOST/categories/depth/
The following attributes are required to create a Depth:
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "new depth",
"code": "new-depth-code",
"level": 3,
"category": {
"id": 65
}
}200Body
{
"id": 23,
"name": "new depth",
"code": "new-depth-code",
"category": {
"code": "cat-code",
"color": {},
"name": "category one",
"id": "65"
},
"dateCreated": 1434561059383
}Edit a DepthPUT/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
- id
string(required)ID of the Depth
Headers
Content-Type: application/jsonBody
{
"id": 23,
"name": "a Different name",
"code": "a-diff-code"
}200Body
{
"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 DepthDELETE/categories/depth/{id}
Example URI
- id
string(required)ID of the Category
200Body
{
{
"response": "Successfully removed"
}
}Saved Search ¶
Saved Search related resources of iOffice API
Saved Search ¶
A single saved search object.
Retrieve a Single Saved SearchGET/savedsearches/{id}
Example URI
- id
string(required)ID of the Saved Search
200JSON representation of the Saved Search Resource
Headers
Content-Type: application/jsonBody
{
"id": 79,
"itemClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"sortOrder": 0,
"name": "Computers",
"availability": "EVERYONE",
"filters": [
{
"valueString": "Comp",
"qualifier": "CONTAINS",
"property": {
"path": [
{
"name": "Name",
"collection": false
}
],
"entryPointClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"name": "Name",
"pathString": "name",
"propertyClass": {
"name": "java.lang.String"
}
},
"id": 86,
"propertyPath": "name",
"value": {}
}
],
"matchingType": "ANY"
}Edit a Saved SearchPUT/savedsearches/{id}
To update a Saved Search send JSON with the Saved Search’s ID and updated value for one or more of the attributes.
Note:
-
matchingType = true -> Match all filters.
-
matchingType = false -> Match any filter.
Example URI
- id
string(required)ID of the Saved Search
Headers
Content-Type: application/jsonBody
{
"id": 79,
"availability": "EVERYONE",
"filters":
[
{
"id": 86,
"qualifier": "CONTAINS",
"valueString": "Comp",
"propertyPath": "name",
}
],
"itemClassName": "com.iofficeconnect.asset.AssetType",
"matchingType": false,
"name": "Computers"
}200JSON representation of the Saved Search Resource
Headers
Content-Type: application/jsonBody
{
"id": 79,
"itemClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"sortOrder": 0,
"name": "Computers",
"availability": "EVERYONE",
"filters": [
{
"valueString": "Comp",
"qualifier": "CONTAINS",
"property": {
"path": [
{
"name": "Name",
"collection": false
}
],
"entryPointClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"name": "Name",
"pathString": "name",
"propertyClass": {
"name": "java.lang.String"
}
},
"id": 86,
"propertyPath": "name",
"value": {}
}
],
"matchingType": "ANY"
}Remove a Saved SearchDELETE/savedsearches/{id}
Example URI
- id
string(required)ID of the Saved Search
200Body
{
{
"response": "Successfully removed"
}
}Saved Searches Collection ¶
List of Saved SearchesGET/savedsearches/
Example URI
- searchType
string(optional) Example: user, asset, moveString to filter list by saved search type. If no searchType is sent, searchType defaults to
asset.
200JSON representation of the Saved Search Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"id": 79,
"itemClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"sortOrder": 0,
"name": "Computers",
"availability": "EVERYONE",
"filters": [
{
"valueString": "Comp",
"qualifier": "CONTAINS",
"property": {
"path": [
{
"name": "Name",
"collection": false
}
],
"entryPointClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"name": "Name",
"pathString": "name",
"propertyClass": {
"name": "java.lang.String"
}
},
"id": 86,
"propertyPath": "name",
"value": {}
}
],
"matchingType": "ANY",
"dateUpdated": 1572969944120
},
{
"id": 80
...
},
{
"id": 81
...
}
]Create a Saved SearchPOST/savedsearches/
The following attributes are required to create a Saved Search: name, availability, matchingType and itemClassName.
Note:
-
matchingType = true -> Match all filters.
-
matchingType = false -> Match any filter.
-
itemClassName:
com.iofficeconnect.asset.AssetType, com.iofficeconnect.move.Request, com.iofficeconnect.user.User,
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Computers",
"availability": "EVERYONE",
"matchingType": false,
"itemClassName": "com.iofficeconnect.asset.AssetType",
"filters": [
{
"propertyPath": "name",
"qualifier": "CONTAINS",
"valueString": "comp"
}
]
}201JSON representation of the Saved Search Resource
Headers
Content-Type: application/jsonBody
{
"id": 79,
"itemClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"sortOrder": 0,
"name": "Computers",
"availability": "EVERYONE",
"filters": [
{
"valueString": "Comp",
"qualifier": "CONTAINS",
"property": {
"path": [
{
"name": "Name",
"collection": false
}
],
"entryPointClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"name": "Name",
"pathString": "name",
"propertyClass": {
"name": "java.lang.String"
}
},
"id": 86,
"propertyPath": "name",
"value": {}
}
],
"matchingType": "ANY"
}Property Collection ¶
List of PropertiesGET/savedsearches/properties/
This are the properties used in a Search Filter.
Example URI
- searchType
string(optional) Example: user, asset, moveString to return list of properties by saved search type. If no searchType is sent, searchType defaults to
asset.
200JSON representation of Properties Collection resource.
Headers
Content-Type: application/jsonBody
[
{
"name": "Center links > Asset type center link : Center",
"path": [
{
"name": "Center links",
"collection": true
},
{
"name": "Asset type center link",
"collection": false,
"collectionElementClass": {
"name": "com.iofficeconnect.asset.AssetTypeCenterLink"
}
},
{
"name": "Center",
"collection": false
}
],
"entryPointClass": {
"name": "com.iofficeconnect.asset.AssetType"
},
"pathString": "centerLinks[com.iofficeconnect.asset.AssetTypeCenterLink].center",
"propertyClass": {
"name": "com.iofficeconnect.asset.AssetCenter"
}
},
{
"name": "Code",
...
},
{
"name": "Metering enabled",
...
}
]Space ¶
Hierarchy ¶
Hierarchy related resources of iOffice API
Add New HierarchyPOST/categories
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "AddOn1",
"categoryType": [
{
"id": 3
}
]
}201Body
{
"dateCreated": 1669805101765,
"color": {},
"name": "AddOn1",
"id": 486
}Update HierarchyPUT/categories
Example URI
Headers
Content-Type: application/jsonBody
{
"id": 493,
"name": "NEWHIERARCHIMAINLEVEL"
}200Body
{
"dateCreated": 1669836751583,
"color": {},
"name": "NEWHIERARCHIMAINLEVEL",
"id": 493,
"dateUpdated": 1669815993488
}Delete HierarchyDELETE/categories/{id}
Example URI
- id
string(required)ID of the Category
200Body
{
"response": "Successfully removed"
}Retrieve Hierarchy TypesGET/categories/type/{id}
Example URI
- id
int(required) Example: 3ID of the Category Type
200Body
[
{
"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 HierarchyGET/categories/items
Example URI
- category
int(required) Example: 331- root
boolean(required) Example: true
200Body
[
{
"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 HierarchyPOST/categories/depths
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Unnamed Hierarchy Level",
"category": {
"id": 492
},
"level": 1
}201Body
{
"dateCreated": 1669814609962,
"level": 1,
"name": "Unnamed Hierarchy Level",
"id": 727,
"category": {
"dateCreated": 1669834292027,
"color": {},
"name": "TestAdd",
"id": 492,
"dateUpdated": 1669812693803
}
}Update Level In HierarchyPUT/categories/depths
Example URI
- id
string(required)ID of the Level/Depth
Headers
Content-Type: application/jsonBody
{
"id":{id},
"name":"Level1"
}200Body
{
"dateCreated": 1669815214240,
"level": 1,
"name": "UpdatedFromPMAN",
"id": 730,
"category": {
"dateCreated": 1669836751583,
"color": {},
"name": "Newra",
"id": 493,
"dateUpdated": 1669815266397
},
"dateUpdated": 1669815401648
}Delete Level In HierarchyDELETE/categories/depths/{id}
Example URI
- id
string(required)ID of the Level/Depth
200Body
{
"response": "Successfully removed"
}Space Types ¶
Space Types related resources of iOffice API
Retrieve Space TypesGET/rooms/types
Example URI
- includeParking
boolean(required) Example: trueIf true, query will include rooms with parking spaces
200Body
[
{
"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 TypePOST/rooms/types
The following attributes are required to Create Space Type:
name, contentFlag, typeCode, defaultRoomType, cost, spaceTypeGroup
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "SpaceTypeAdd",
"contentFlag": 1,
"typeCode": "",
"defaultRoomType": false,
"cost": 0,
"spaceTypeGroup": {
"id": 1
}
}201Body
{
"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 TypePUT/rooms/types
The following attributes are required to Update Space Type: hexColor, contentFlag, defaultRoomType, cost, sortOrder, name, id, spaceTypeGroup, typeCode
Example URI
Headers
Content-Type: application/jsonBody
{
"hexColor": "ffffff",
"contentFlag": 1,
"defaultRoomType": false,
"cost": 0,
"sortOrder": 234,
"name": "A1234",
"id": 238,
"spaceTypeGroup": {
"id": 1
},
"typeCode": ""
}200Body
{
"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 TypeDELETE/rooms/types
Example URI
- id
string(required)ID of the Space/room
200Body
{
"response": "Successfully removed"
}Reset Sort Order of Space TypesPOST/rooms/types/resetSortOrders
Example URI
Headers
Content-Type: application/jsonBody
{}200Body
{
"response": "Sort orders reset successfully"
}Centers ¶
Centers-related resources of iOffice API
Centers ¶
Collection of all Centers
Retrieve All CentersGET/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
- module
string(required) Example: reservationModule name
200Body
[
{
"name": "Reservation Center",
"id": 82
},
{
"name": "London Reservation Center",
"id": 95
},
{
"name": "Maine Reservation Center",
"id": 106
}
...
]Center Details With All Building And RulesGET/centers/{centerId}{?selector}
This API returns the details of a particular center with list of all buildings
Example URI
- centerId
number(required) Example: 145Reservations Center ID
- selector
string(required) Example: buildings(centers(module))%2CrulesSelector ID (returns exact response with ‘buildings(centers(module))%2Crules’)
200Body
{
"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 HolidaysGET/centers/holidays
Example URI
200Body
[
{
"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 SchedulePOST/centers/holidays
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "Good Friday",
"holidayItems": [
{
"date": "2023-04-07"
}
]
}201Body
{
"holidayItems": [
{
"date": "2023-04-07",
"id": 301
}
],
"dateCreated": 1680621740357,
"name": "Good Friday",
"id": 8
}Update Holiday SchedulePUT/centers/holidays
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "April Holidays",
"id": 8,
"holidayItems": [
{
"date": "2023-04-07"
},
{
"date": "2023-04-11"
},
{
"date": "2023-04-12"
}
]
}200Body
{
"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 ScheduleGET/centers/holidays/{id}
Example URI
- id
string(required)ID of the Holiday Schedule
200Body
{
"holidayItems": [
{
"date": "2023-04-07",
"id": 301
}
],
"dateCreated": 1680621740373,
"name": "Good Friday",
"id": 8
}Remove Holiday ScheduleDELETE/centers/holidays/{id}
Example URI
- id
string(required)ID of the Holiday Schedule
200Body
{
"response": "Successfully removed"
}Center Promo Content ¶
Promo Content Collection
Retrieve Center Promo ContentGET/center/{?module,selector}
The following attributes are required to get Promo Content details: module, selector.
Example URI
- module
string(required) Example: reservationModule name
- selector
string(required) Example: id%2Cname%2CpromoContentSelector ID
200Body
[
{
"promoContent": [],
"name": "Test",
"id": 177
},
{
"promoContent": [],
"name": "SiteAdmin4388",
"id": 178
},
{
"promoContent": [],
"name": "SiteAdmin4388",
"id": 179
}
...
]Add/Update Promo Content for a CenterPUT/centers/promo
This API Add/Updates the Promo Content details for a Reservation Center
Example URI
Headers
Content-Type: application/jsonBody
{
"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>"
]
}200Body
{
"name": "Reservation Center",
"id": 82
}Neighborhoods ¶
Neighborhoods-related resources of iOffice API
Neighborhoods ¶
Collection of all Neighborhoods
Retrieve All NeighborhoodsGET/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
- centerId
int(required) Example: 79Center Id
200Body
[
{
"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 NeighborhoodsPUT/neighborhoods
The following attributes are required to create a Neighborhoods
Example URI
Headers
Content-Type: application/jsonBody
{
"name": "New Neighborhood_QA",
"center": {
"id": 79
},
"color": "#CCCCCC",
"borderWeight": 2,
"borderColor": "#CCCCCC",
"borderOpacity": 0.5,
"fillOpacity": 0.5,
"effectiveStartDate": 1676451692488,
"code": "QA_Test"
}201Body
{
"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 NeighborhoodsPOST/neighborhoods
Example URI
Headers
Content-Type: application/jsonBody
{
"code": "NWNBHD_550118577",
"color": "#CCCCCC",
"name": "Neighborhood1159400",
"id": 210
}200Body
{
"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 NeighborhoodsDELETE/neighborhoods/{id}
Example URI
- id
int(required)ID of the Neighborhoods
200Body
{
{
"response": "Successfully removed"
}
}Sections ¶
Collection of all Neighborhood Sections
Retrieve All SectionsGET/neighborhoods/sections
This API returns list of all sections from all neighbourhoods
Example URI
200Body
[
{
"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 SectionPUT/neighborhoods/sections
This API creates section for particular existing neighbourhood
The ‘Room ID’, ‘Floor ID’, ‘Neighbourhood ID’, ‘Coordinates’ and ‘Name’ is compulsory
Example URI
Headers
Content-Type: application/jsonBody
{
"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
}
}201Body
{
"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 SectionPOST/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
Headers
Content-Type: application/jsonBody
{
"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
}
}200Body
{
"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 SectionDELETE/neighborhoods/Sections/{sectionId}
This API deletes the Section from particular neighbourhood
The following attributes are required to get list of neighborhoods: sectionId.
Example URI
- sectionId
int(required) Example: 231Section Id
200Body
{
"response": "Successfully removed"
}Devices ¶
Devices ¶
Devices related resources of iOffice API
Retrieve Collection of DevicesGET/devices
Example URI
- 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)`)
200Body
[
{
"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 DeviceGET/devices/{id}
Example URI
- id
int(required) Example: 234ID 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)`)
200Body
{
"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 DevicePOST/devices/create
Example URI
- 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
Headers
Content-Type: application/jsonBody
{
"device": {
"deviceType": "WAYFINDING",
"enabled": true,
"name": "WAYFINDING Device",
"settings": {
"settingsType": "WAYFINDING"
}
},
"floor": {
"id": 3814
},
"position": {
"x": 1903.8198380566669,
"y": 688.6639676114645
}
}201Body
{
"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 DevicePUT/devices/{id}
Example URI
- id
int(required) Example: 80ID of the Device
Headers
Content-Type: application/jsonBody
{
"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"
}
}200Body
{
"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 DeviceDELETE/devices/{id}
Example URI
- id
int(required) Example: 123ID of the Device
200Body
{
"response": "Successfully removed"
}Retrieve List Of Devices in FloorGET/devices
Example URI
- deviceType
optinal(required) Example: WAYFINDINGIf included, query will return list of devices of given device type
- floorId
int(optional) Example: 1293If 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
200Body
[
{
"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 TypesGET/devices/types
Example URI
200Body
[
{
"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 DevicePOST/devices/unpair/{id}
Example URI
- id
int(required) Example: 80ID of the Device
200Body
{
"dateUnpaired": 1670870511776,
"unpaired": "device:WAYFINDING:80"
}Device PendingGET/devices/pending
Example URI
200Body
{
"expiresIn": 60,
"startDate": 1670867655990
}Broadcast DevicePOST/devices/broadcast/
Example URI
Headers
Content-Type: application/jsonBody
{}200Body
{
"expiresIn": 60,
"startDate": 1670867655990
}Sensors ¶
Retrieve SensorsGET/sensors
Example URI
200Body
[
{
"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 TypesGET/sensors/types
Example URI
200Body
{
"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 RoomsGET/sensors/rooms
Example URI
- activeNow
boolean(required) Example: true
200Body
{
"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 SensorPOST/sensors/rooms
Request response for Add/Move Sensor:
Example URI
Headers
Content-Type: application/jsonBody
{
"roomId": 80144,
"links": [
{
"sensorUid": "0909",
"notes": "Test",
"vendor": {
"id": "IBEACON",
"name": "iBeacon",
"sensorTypes": [
{
"id": "IBEACON",
"name": "iBeacon"
}
]
},
"sensorType": {
"id": "IBEACON",
"name": "iBeacon"
}
}
]
}200Body
{
"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:Headers
Content-Type: application/jsonBody
{
"roomId": 80144,
"links": []
}200Body
{
"status": "ok",
"response": {
"roomId": 80144,
"links": []
}
}Update SensorPUT/sensors
Example URI
Headers
Content-Type: application/jsonBody
{
"uid": "0909",
"name": "TestEdit",
"type": {
"id": "IBEACON"
}
}200Body
{
"status": "ok",
"response": 1
}Retrieve Sensor Live Room DataGET/sensors/live-room-utilization
Example URI
- floorId
int(required) Example: 408ID of the floor
200Body
{
"status": "ok",
"response": {}
}Retrieve Sensor Live Room People CountGET/sensors/live-room-people-count
Example URI
- floorId
int(required) Example: 408ID of the floor
- aggregate
string(required) Example: max
200Body
{
"status": "ok",
"response": {}
}SFTP ¶
SFTP Access related resources of iOffice API
Setup SFTP Access ¶
Retrieve SFTP DetailsGET/sftp
Example URI
- orderBy
string(required) Example: dateCreated- orderByType
string(required) Example: desc
200Body
[
{
"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
- Request
application/json(required)
200Body
{
"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 InvitePUT/sftp/cancel
Example URI
Headers
Content-Type: application/jsonBody
{}200Body
{
"passwordResetAllowed": true,
"dateCreated": 1680625515803,
"cancelled": true,
"recipientName": "Rushikesh",
"id": 54,
"sshKeyAllowed": false,
"recipientEmail": "Rushikesh.Mali@eptura.com",
"dateUpdated": 1680625971533
}SFTP EnabledGET/sftp/enabled
Example URI
200Body
{
"response": "dev_jcook_testing"
}