Schedule a meet
#
Send Meet messageA meet message
typically refers to a message or communication related to scheduling or planning a meeting. These messages can include information about the Scheduled date,time and meet link.
Share the created meet link from previous step by using the sendMeetMessage method. You can share the title, link and schdueled date and time using this method.
caution
If Group call feature is unavailable for your plan, then it will throw 403 exception
#
Request ParamParam | Description | Type | Required |
---|---|---|---|
toJid | JID of the To User/GROUP | JID String | true |
link | Meet Link which we need to share | String | true |
scheduledDateTime | Scheduled Date and Time | Number (Timestamp) | true |
title | Meet Title which we need to share | String | false |
mentionedUsersIds | Array of Group Mentioned UsersIds | Array of String | false |
topicId | Topic Id for the Message | String | false |
metaData | MetaData for the Message | String | false |
#
Response Format:#
Receive Meet messageTo receive the meet message from another user you must implement the messageListener function. It’s a function that will be triggered whenever you receive a new message or related event in one-to-one or group chat. Further to initialize the SDK, you need to add the below callback method during the process.
note
To learn more on 'message listener callbacks,' see the Message Callback Event Listener Section