Updated on 2024-12-27 GMT+08:00

Meeting Details Notification

API Description

A notification is sent when the meeting details changed.

Method Definition

1
2
3
4
5
6
    /**
     * Notifies you of meeting details.
     *
     * @param meetingInfo
     */
    void onMeetingInfoChanged(MeetingInfo meetingInfo);

Parameter Description

Table 1 Parameter description

Parameter

Type

Description

meetingInfo

MeetingInfo

Meeting details.

Return Values

None

Parameter Extension

Table 2 MeetingInfo description

Parameter

Type

Description

confSubject

String

Meeting topic.

confId

String

Meeting ID.

vmrConfId

String

Personal meeting ID.

selfConfRole

ConfRole

Role in the meeting. For details, see Table 3.

hostPwd

String

Host password.

guestPwd

String

Guest password.

audiencePwd

String

Attendee password.

accessNumber

String

Meeting access number.

hostJoinUri

String

Link for the host to join the meeting.

guestJoinUri

String

Link for guests to join the meeting.

audienceJoinUri

String

Link for attendees to join the webinar.

timeZone

String

Time zone.

startTimeStamp

long

Meeting start time. The value is a UTC timestamp, accurate to seconds.

endTimeStamp

long

Meeting end time. The value is a UTC timestamp, accurate to seconds.

serverCurrentTime

long

Current server time.

scheduserUuid

String

Scheduler UUID.

scheduserName

String

Scheduler name.

orgId

String

Enterprise ID, which can be used to determine whether a user does not belong to this enterprise.

isWebinar

boolean

Whether the meeting is a webinar.

isCreator

boolean

Whether the meeting was scheduled by you.

conferenceType

ConferenceType

Meeting type. For details, see Table 4.

confUuid

String

Meeting UUID.

openCustomPara

String

Custom extension information.

liveRoomAddress

String

Live broadcast address.

isHighResolution

boolean

Whether the meeting resolution is ultra-HD (1080p).

isP2PConf

boolean

Whether the meeting is an instant meeting.

supportSummary

boolean

Whether meeting minutes are supported.

defaultSummaryState

SummaryState

Meeting minutes status. For details, see Table 5.

recordMode

ConfRecordMode

Media recording mode.

supportBreakoutConf

boolean

Whether breakout rooms are supported.

isBreakoutSubConf

boolean

Whether the session is a breakout room. For details, see Table 6.

supportGuestInviteAttendee

boolean

Whether a guest can invite others to the meeting.

Table 3 Enumerated values of ConfRole

Enumerated Value

Description

ROLE_ATTENDEE

Guest.

ROLE_HOST

Host.

ROLE_AUDIENCE

Attendee.

ROLE_COHOST

Co-host.

ROLE_WAITING

Waiting room member.

Table 4 Enumerated values of ConferenceType

Enumerated Value

Description

CONF_TYPE_COMMON

Common meeting.

CONF_TYPE_CYCLE

Recurring meeting.

Table 5 Enumerated values of SummaryState

Enumerated Value

Description

SUMMARY_STATE_CLOSE

Disabled.

SUMMARY_STATE_OPEN

Enabled.

Table 6 Enumerated values of ConfRecordMode

Enumerated Value

Description

CONF_RECORD_DISABLE

Disabled.

CONF_RECORD_LIVE

Live broadcast.

CONF_RECORD_RECORD

Recording.

CONF_RECORD_LIVE_AND_RECORD

Live broadcast and recording.