Modify meeting room

Endpoint

POST /api/v0.0.1/conference/update?token={token}&type={type}

Request Parameters

Name

Importance

Type

Description

Name

Importance

Type

Description

number

Required

String

Fixed conference room number.

name

Optional

String

Fixed conference room name. Note: The following characters are not allowed: &'<>`|$]".

participantepassword

Optional

String

Participant password. Note: Only numbers are allowed.

moderatorpassword

Optional

String

Moderator password. Note: Only numbers are allowed.

waitformoderator

Optional

String

Whether to wait for the host to enter before starting the meeting.

Ranges:

  • yes

  • no

Response Parameters

Name

Type

Description

Name

Type

Description

status

String

Request results.

  • Success.

  • Failed.

Examples

Request Example

Modify meeting room 8000.

POST /api/v0.0.1/conference/update?token=813b621cfe8eecf445a2ce1f4a079ffe&type=json Content-Type:application/json; charset=utf-8 Host: 192.168.5.150 { "number":"8000", "participantepassword":"444444", "moderatorpassword":"555555", "waitformoderator":"yes" }

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" }