Query Conference Room Settings
Endpoint
POST /api/v0.0.1/conference/query?token={token}&type={type}
Request Parameters
Name | Importance | Type | Description |
number | Required | String | Fixed conference room number.
Ranges:
For example: “number”:“6500”
For example: “number”:“6500,7500,8000”
|
Response Parameters
Name | Type | Description |
status | String | Request results.
|
conferences | Array <ConferenceInfo> | List of meeting room information. |
ConferenceInfo
Name | Type | Description |
number | String | Conference room number. |
name | String | The name of the meeting room. |
participantepassword | String | Participant password. |
moderatorpassword | String | Moderator password. |
waitformoderator | String | Whether to wait for the host to enter before starting the meeting.
|
Examples
Request Example
Query Queue 9999, 9998.
POST /api/v0.0.1/conference/query?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json
Content-Type:application/json; charset=utf-8
Host: 172.16.6.150
{
“number”: “all”
}
Response Example
HTTP/1.1 200 OK
Accept-Ranges: bytes
Connection: close
Content-Type: application/json
Access-control-allow-origin: *
Access-control-allow-methods: GET, POST, OPTIONS, PUT, DELETE
{
“status”: “Success”,
“conferences”: [
{
“number”: “6500”,
“name”: “6500”,
“participantepassword”: “111111”,
“moderatorpassword”: “222222”,
“waitformoderator”: “no”
},
{
“number”: “7500”,
“name”: “7500”,
“participantepassword”: “”,
“moderatorpassword”: “”,
“waitformoderator”: “no”
},
{
“number”: “8000”,
“name”: “testapi1”,
“participantepassword”: “444444”,
“moderatorpassword”: “555555”,
“waitformoderator”: “no”
}
]
}