For Developers
Rooms Overview
A room is a physical location where classes, meetings, and other events may take place.
Properties
| Property | Type | Description |
|---|---|---|
id | string | The UUID for the room. $filter operators: equals in not in |
created_date | Date | When the room was first seen by Edlink. |
updated_date | Date | When the room was last changed in Edlink. $filter operators: equals gt lt gte lte |
properties | object | Non-standard properties that may be of interest to the developer. |
number | string | The room number or identifier. |
name | string | The name of the room. |
description | string | A description of the room. |
capacity | number | The maximum number of people that can be accommodated in the room. |
category | string | The category of the room. |
flags | RoomFlag[] | The flags for the room. All, some, or none of the possible flags may be included. |
identifiers | Identifier[] | Additional IDs associated with the object. |
facility_id | string | The UUID of the corresponding Facility. |
department_ids | string[] | An array of UUIDs of the associated Departments. |
JSON Example
{
"created_date": "2024-06-19T21:47:48.918Z",
"updated_date": "2025-02-28T17:28:52.447Z",
"properties": {},
"number": "4442",
"name": "Berge Group Building: 4442",
"description": "Berge Group Building: 4442 deploy collaborative supply-chains",
"capacity": 77,
"category": "applications",
"identifiers": [
{
"type": "sis_id",
"value": "8d91cf09-63d6-4032-b027-db76f447424f"
}
],
"id": "8e0107b3-4bdd-5738-aa1b-e8dcb7b76949",
"flags": [],
"facility_id": "22ccb46e-85fd-57a9-b6d6-fbd8fa196853",
"department_ids": [
"b183aae9-5ac8-5644-b09f-ba9695e58f08"
]
}
