Skip to content

Conference Rooms

List all conference rooms

This method allows you to retrieve a list of all conference rooms in your unit.

URL

/api/v2/conferences/list

Supported Parameters

There are no supported parameters for this method.

Example JSON

{
    "status":"success",
    "time":0.01,
    "flags":{},
    "data":
    [
        {
            "id":187,
            "name":"test",
            "created_at":"2015-10-07T13:25:01.000Z",
            "updated_at":"2015-10-07T13:25:01.000Z",
            "password":""
        }
    ]
}

Get conference room properties

This method allows you to retrieve information about a particular conference room in your unit.

URL

/api/v2/conferences/show

Supported Parameters

  • id - the ID of the conference room that you wish to view (required)

Example JSON

{
    "status":"success",
    "time":0.01,
    "flags":{},
    "data":
        {
            "id":187,
            "name":"test",
            "created_at":"2015-10-07T13:25:01.000Z",
            "updated_at":"2015-10-07T13:25:01.000Z",
            "password":""
        }
}