Updated on 2024-09-13 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.

startTime

long

Meeting start timestamp, accurate to seconds (GMT).

endTime

long

Meeting end timestamp, accurate to seconds (GMT).

serverCurrentTime

long

Current server time.

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.

openCustomPara

String

Custom extension information.

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.