Help Center/ Meeting/ Client SDK Reference/ Web SDK/ APIs/ Meeting Control/ Querying the Meeting Control Status
Updated on 2025-04-18 GMT+08:00

Querying the Meeting Control Status

getConfConfig

API Description

This API is used to query the status of the current meeting control settings.

Precautions

  1. Call this API after calling the API for joining a meeting.
  2. Call this API only after you receive the event of the meeting joining result notification.

Method Definition

1
getConfConfig(configName):Promise<Config>

Parameter Description

Table 1 Parameter description

Parameter

Mandatory

Type

Description

configName

Yes

string

Meeting control status key. For details, see Table 2.

Return Values

For details about the result structure, see Table 1. For details about the result data, see the following table.

Table 2 Return values

Type

Description

object

The value of configName is returned. The structure is {"configName": value}.

Sample Code

1
2
3
4
5
6
7
8
// Query the status of the current shared desktop.
HWMeeting.getConfConfg("shareScreen").then((data) => {
  // Display the result.
  console.log(JSON.stringify(data));
}).catch((e) => {
  // API calling failed.
  ...  
});