Messenger
Methods
createConversation
createConversation(conversationConfig: ): Promise<MessengerEventTypes.CreateConversation,MessengerEventTypes.Error>
Create a new conversation with the extended configuration.Other parties of the conversation (online participants and logged in clients) can be informed about the conversation creation via the MessengerEventTypes.CreateConversation.
Parameters
conversationConfig:
OptionalConversationConfig instance with extended conversation parameters
Returns
editUser
editUser(customData: object
, privateCustomData: object
): Promise<MessengerEventTypes.EditUser,MessengerEventTypes.Error>
Edit current user information.Other users that are subscribed to the user can be informed about the editing via the MessengerEventTypes.EditUser event.
Parameters
customData:
object
OptionalNew custom data. If null, previously set custom data will not be changed. If empty object, previously set custom data will be removed.
privateCustomData:
object
OptionalNew private custom data. If null, previously set private custom data will not be changed. If empty object, previously set private custom data will be removed.
Returns
type:
Promise<MessengerEventTypes.EditUser,MessengerEventTypes.Error>
getConversation
getConversation(uuid: string
): Promise<MessengerEventTypes.GetConversation,MessengerEventTypes.Error>
Get a conversation by its UUID.It's possible if:
- the user that calls the method is/was a participant of this conversation
- the conversation is an available public conversation (see Messenger.getPublicConversations)
Only the client that called the method can be informed about getting conversation.
Parameters
uuid:
string
Conversation UUID
Returns
type:
Promise<MessengerEventTypes.GetConversation,MessengerEventTypes.Error>
getConversations
getConversations(uuids: string[]
): Promise<MessengerEventTypes.GetConversation[],MessengerEventTypes.Error>
Get the multiple conversations by the list of UUIDs. Maximum 30 conversations.It's possible if:
- the user that calls the method is/was a participant of this conversation
- the conversation is an available public conversation (see [Messenger#getPublicConversations])
Only the client that called the method can be informed about getting conversations.
Parameters
uuids:
string[]
Array of UUIDs. Maximum 30 conversations.
Returns
type:
Promise<MessengerEventTypes.GetConversation[],MessengerEventTypes.Error>
getMe
getMe(): string
| null
Get the full Voximplant user identifier, for example 'username@appname.accname', for the current user
Returns
type:
string
type:
null
getPublicConversations
getPublicConversations(): Promise<MessengerEventTypes.GetPublicConversations,MessengerEventTypes.Error>
Get all public conversations (Conversation.publicJoin is true).It's possible to get all public conversations (UUIDs) that were created by:
- the current user
- other users of the same child account
- users of the main Voximplant developer account
Only the client that called the method can be informed about getting public conversations UUIDs.
Returns
getSubscriptions
getSubscriptions(): Promise<MessengerEventTypes.GetSubscriptions,MessengerEventTypes.Error>
Get all current subscriptions, i.e., the array of users the current user is subscribed to.Only the client that called the method can be informed about getting subscriptions.
Returns
getUserByIMId
getUserByIMId(userId: number
): Promise<MessengerEventTypes.GetUser,MessengerEventTypes.Error>
Get information for the user specified by the IM user id.It's possible to get any user of the main Voximplant developer account or its child accounts.
Only the client that called the method can be informed about getting user information.
Parameters
userId:
number
IM User id
Returns
type:
Promise<MessengerEventTypes.GetUser,MessengerEventTypes.Error>
getUserByName
getUserByName(username: string
): Promise<MessengerEventTypes.GetUser,MessengerEventTypes.Error>
Get information for the user specified by the Voximplant user name, e.g., 'username@appname.accname'.It's possible to get any user of the main Voximplant developer account or its child accounts.
Only the client that called the method can be informed about getting user information.
Parameters
username:
string
Voximplant user identifier
Returns
type:
Promise<MessengerEventTypes.GetUser,MessengerEventTypes.Error>
getUsersByIMId
getUsersByIMId(users: number[]
): Promise<MessengerEventTypes.GetUser[],MessengerEventTypes.Error>
Get information for the users specified by the array of the IM user ids. Maximum 50 users.It's possible to get any users of the main Voximplant developer account or its child accounts.
Only the client that called the method can be informed about getting users information.
Parameters
users:
number[]
Array of IM user ids
Returns
type:
Promise<MessengerEventTypes.GetUser[],MessengerEventTypes.Error>
getUsersByName
getUsersByName(users: string[]
): Promise<MessengerEventTypes.GetUser[],MessengerEventTypes.Error>
Get information for the users specified by the array of the Voximplant user names. Maximum 50 users.It's possible to get any users of the main Voximplant developer account or its child accounts.
Only the client that called the method can be informed about getting users information.
Parameters
users:
string[]
Array of Voximplant user identifiers
Returns
type:
Promise<MessengerEventTypes.GetUser[],MessengerEventTypes.Error>
joinConversation
joinConversation(uuid: string
): Promise<MessengerEventTypes.EditConversation,MessengerEventTypes.Error>
Join the current user to any conversation specified by the UUID.It's possible only on the following conditions:
- a conversation is created by a user of the main Voximplant developer account or its child accounts
- public join is enabled (Conversation.publicJoin is true)
- the conversation is not a direct one (Conversation.direct is false)
Other parties of the conversation (online participants and logged in clients) can be informed about joining to the conversation via the MessengerEventTypes.EditConversation event.
Parameters
uuid:
string
Conversation UUID
Returns
leaveConversation
leaveConversation(uuid: string
): Promise<MessengerEventTypes.EditConversation,MessengerEventTypes.Error>
Make the current user leave a conversation specified by the UUID.It's possible only if the conversation is not a direct one (Conversation.direct is false).
After a successful method call the conversation's UUID will be added to User.leaveConversationList.
Other parties of the conversation (online participants and logged in clients) can be informed about leaving the conversation via the MessengerEventTypes.EditConversation event.
Parameters
uuid:
string
Conversation UUID
Returns
managePushNotifications
managePushNotifications(notifications: ): Promise<MessengerEventTypes.EditUser,MessengerEventTypes.Error>
Manage messenger push notification subscriptions for the current user.Other logged in clients (of the current user) can be informed about managing push notifications via MessengerEventTypes.EditUser
Parameters
notifications:
Array of messenger notification types
Returns
type:
Promise<MessengerEventTypes.EditUser,MessengerEventTypes.Error>
off
off(eventType: , event: Function
): void
Remove handler for specified event
Parameters
eventType:
event:
Function
OptionalHandler function. If not specified, all handlers for the event type will be removed.
Returns
type:
void
on
on(eventType: , event: Function
): void
Register handler for specified messenger event. Use Messenger.off method to delete a handler.
Parameters
eventType:
event:
Function
Returns
type:
void
setStatus
setStatus(online: boolean
): Promise<MessengerEventTypes.SetStatus,MessengerEventTypes.Error>
Set the current user status.Other users (that are subscribed to the user) and other clients (of the current user) can be informed about the status changing via the MessengerEventTypes.SetStatus event.
Parameters
online:
boolean
True if user is available for messaging, false otherwise
Returns
type:
Promise<MessengerEventTypes.SetStatus,MessengerEventTypes.Error>
subscribe
subscribe(users: number[]
): Promise<MessengerEventTypes.Subscribe,MessengerEventTypes.Error>
Subscribe for other user(s) information and status changes.It's possible to subscribe for any user of the main Voximplant developer account or its child accounts.
Other logged in clients (of the current user) can be informed about the subscription via the MessengerEventTypes.Subscribe event.
User(s) specified in the 'users' parameter aren't informed about the subscription.
Parameters
users:
number[]
Array of IM user ids
Returns
type:
Promise<MessengerEventTypes.Subscribe,MessengerEventTypes.Error>
unsubscribe
unsubscribe(users: number[]
): Promise<MessengerEventTypes.Unsubscribe,MessengerEventTypes.Error>
Unsubscribe from other user(s) information and status changes.Other logged in clients (of the current user) can be informed about the unsubscription via the MessengerEventTypes.Unsubscribe event.
User(s) specified in the 'users' parameter aren't informed about the unsubscription.
Parameters
users:
number[]
Array of IM user ids
Returns
type:
Promise<MessengerEventTypes.Unsubscribe,MessengerEventTypes.Error>
unsubscribeFromAll
unsubscribeFromAll(): Promise<MessengerEventTypes.Unsubscribe,MessengerEventTypes.Error>
Unsubscribe from all subscriptions.Other logged in clients (of the current user) can be informed about the unsubscription via the MessengerEventTypes.Unsubscribe event.
Other users aren't informed about the unsubscription.
Returns
type:
Promise<MessengerEventTypes.Unsubscribe,MessengerEventTypes.Error>