Usage
The bird.appinbox
is the main entry point for app inbox in Bird client SDKs. Through which you can do the following:
Get messages
Listen to incoming messages
Mark message as read
Get messages
Listen to incoming messages
App inbox messages will arrive in real-time when the client application is opened. You can listen to incoming messages as shown in this example
Mark message as read
Each message has a readAt
field to indicate whether is read or unread and when the message was read. You can mark a message as read by calling bird.appinbox.markMessageRead(message)
.
Last updated