Organizational Unit Resources ALPHA
Required plan: SchedulerReturns a list of all resources within an Organizational Unit. These might represent meeting rooms, or other physical resources.
Authentication uses a client_secret
of an Internal Application linked to the Organizational Unit.
URL format #
{data_center_url}/v1/organizational_unit_resources
Example Request #
GET /v1/organizational_unit_resources HTTP/1.1
Host: {data_center_url}
Authorization: Bearer {API_KEY}
Example Response #
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"organizational_unit_resources": [
{
"sub": "res_64c2837ceefbfe29df0352e7",
"email": "c_34ht8736t@resource.calendar.google.com",
"name": "Meeting Room One",
"scheduler": {
"enabled": true
}
},
{
"sub": "res_64c28060eefbfe29df0352c1",
"email": "c_rnf2347f@resource.calendar.google.com",
"name": "Meeting Room Two",
"scheduler": {
"enabled": true
}
}
],
"pages": {
"current": 1,
"total": 1
}
}
Request Parameters #
data_center_url required
The URL for the data center you want to communicate with. Possible choices are:
api-au.cronofy.com
- π¦πΊ Australiaapi-ca.cronofy.com
- π¨π¦ Canadaapi-de.cronofy.com
- π©πͺ Germanyapi-sg.cronofy.com
- πΈπ¬ Singaporeapi-uk.cronofy.com
- π¬π§ United Kingdomapi.cronofy.com
- πΊπΈ United States
Find out more about Cronofy's data centers.
Response parameters #
organizational_unit_resources.sub #
This specifies the internal Cronofy ID for the Resource, as an ASCII-only String
.
organizational_unit_resources.email #
The email address for the Resource.
organizational_unit_resources.name #
The name of the Resource.
organizational_unit_resources.scheduler.enabled #
Boolean
indicating whether the Resource has the Scheduler enabled for this Organizational Unit.