会议邀请
方法总览
方法名称 | 行为 | 含义描述 |
---|---|---|
OnCustomInviteEnterpriseContact | 通知 | 邀请入会操作发生的通知;仅有RedirectInviteEnterpriseContactEvent设置为true才会通知 |
OnMeetingInvite | 通知 | 邀请入会通知;MeetingInviteUserMessage:会议邀请信息 |
OnMeetingInviteCancel | 通知 | 入会邀请取消通知;MeetingInviteCancelMessage:会议邀请取消信息 |
RedirectInviteEnterpriseContactEvent | 调用 | 是否不使用默认流程,而是自定义处理邀请企业联系人的操作;bRedirect: 是否自定义处理邀请企业联系人的操作 |
InviteConfMemberBySubjectId | 调用 | 邀请企业联系人入会;strMemberList: 要邀请的目标人员subjectId列表 |
InviteConfMemberByAccount | 调用 | 邀请企业联系人入会;strMemberList: 要邀请的目标人员账号列表 |
InviteConfMemberByPhone | 调用 | 号码方式邀请企业联系人入会;strMemberList: 要邀请的用户分机号列表 |
RejectMeetingInvite | 调用 | 拒绝会议邀请;MeetingInviteUserMessage: 邀请信息 |
RejectAllMeetingInvite | 调用 | 拒绝所有会议邀请; |
JoinMeetingWithInvite | 调用 | 接受会议邀请并入会;MeetingInviteUserMessage: 邀请信息 |
OnCustomInviteEnterpriseContact
通知描述
邀请入会操作发生的通知;仅有RedirectInviteEnterpriseContactEvent设置为true才会通知
通知定义
void OnCustomInviteEnterpriseContact();
参数描述
无参数。
返回值描述
无返回值。
OnMeetingInvite
通知描述
邀请入会通知;MeetingInviteUserMessage:会议邀请信息
通知定义
void OnMeetingInvite(MeetingInviteUserMessage inviteMessage);
参数描述
参数 | 类型 | 含义 |
---|---|---|
inviteMessage | MeetingInviteUserMessage | 无 |
会议邀请信息
struct MeetingInviteUserMessage {
std::string strMeetingNumber;/** < 会议号 */
std::string strCredential;/** < 入会密钥 */
std::string strLocation;/** < 会议归属地信息 */
std::string strTitle;/** < 会议主题 */
std::string strInviterName;/** < 邀请者名称 */
std::string strInviteTransId;/** < 邀请事务Id */
}
返回值描述
无返回值。
OnMeetingInviteCancel
通知描述
入会邀请取消通知;MeetingInviteCancelMessage:会议邀请取消信息
通知定义
void OnMeetingInviteCancel(MeetingInviteCancelMessage cancelMessage);
参数描述
参数 | 类型 | 含义 |
---|---|---|
cancelMessage | MeetingInviteCancelMessage | 无 |
会议人员信息
struct MeetingInviteCancelMessage {
std::string strMeetingNumber;/** < 会议号 */
std::string strInviteTransId;/** < 邀请事务Id */
std::string strTitle;/** < 会议主题 */
std::string strInviterName;/** < 邀请事务Id */
int nBizCode;/** < 业务码 */
std::string strMessage;/** < 错误信息 */
}
返回值描述
无返回值。
RedirectInviteEnterpriseContactEvent
接口描述
是否不使用默认流程,而是自定义处理邀请企业联系人的操作
接口定义
YLSDKERR RedirectInviteEnterpriseContactEvent(bool bRedirect);
参数描述
参数 | 类型 | 含义 |
---|---|---|
bRedirect | bool | 是否自定义处理邀请企业联系人的操作 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
InviteConfMemberBySubjectId
接口描述
邀请企业联系人入会
接口定义
YLSDKERR InviteConfMemberBySubjectId(list<string> strMemberList);
参数描述
参数 | 类型 | 含义 |
---|---|---|
strMemberList | list |
要邀请的目标人员subjectId列表 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
InviteConfMemberByAccount
接口描述
邀请企业联系人入会
接口定义
YLSDKERR InviteConfMemberByAccount(list<string> strMemberList);
参数描述
参数 | 类型 | 含义 |
---|---|---|
strMemberList | list |
要邀请的目标人员账号列表 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
InviteConfMemberByPhone
接口描述
号码方式邀请企业联系人入会
接口定义
YLSDKERR InviteConfMemberByPhone(list<string> strMemberList);
参数描述
参数 | 类型 | 含义 |
---|---|---|
strMemberList | list |
要邀请的用户分机号列表 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
RejectMeetingInvite
接口描述
拒绝会议邀请;MeetingInviteUserMessage: 邀请信息
接口定义
YLSDKERR RejectMeetingInvite(string strMeetingNumber, string strInviteTransId);
参数描述
参数 | 类型 | 含义 |
---|---|---|
strMeetingNumber | string | 无 |
strInviteTransId | string | 无 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
RejectAllMeetingInvite
接口描述
拒绝所有会议邀请;
接口定义
YLSDKERR RejectAllMeetingInvite();
参数描述
无参数。
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |
JoinMeetingWithInvite
接口描述
接受会议邀请并入会;MeetingInviteUserMessage: 邀请信息
接口定义
YLSDKERR JoinMeetingWithInvite(string strMeetingNumber, string strInviteTransId);
参数描述
参数 | 类型 | 含义 |
---|---|---|
strMeetingNumber | string | 无 |
strInviteTransId | string | 无 |
返回值描述
类型 | 含义 |
---|---|
YLSDKERR | 错误码,详情见错误码 YLSDKERR 的定义 |