Fetch Rooms API

This API is used for fetching rooms in LMS.

Request URL:

 https://people.zoho.com/api/v1/rooms

Header:

Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Scope:

ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.READ

Possible Operation Types:

ALL - Complete access to data
READ - Only to fetch data

Method:

GET

Request Parameters

ParametersValues AllowedDefault ValueDescription
startIndex <integer>0Specify from which record the response must be fetched

Note: Upto 25 records can be fetched in a single call.

Request

Copiedhttps://people.zoho.com/api/v1/rooms

Header

CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Response

Copied{
    "rooms": [
        {
            "name": "Room One",
            "location": {
                "locationId": "219225000000645239",
                "name": "ZOHO, CHENNAI"
            },
            "facilities": [
                "WiFi",
                "Chairs with writing pad"
            ],
            "roomId": "219225000000645249",
            "capacity": "12"
        }
    ],
    "code": "200",
    "message": "success",
    "hasMoreRecords": false
}