Subscribe contacts to app inbox campaigns

When app inbox is properly configured, and SDKs are integrated in your application, an app inbox will be created for the contact. This enables you to build user Journeysarrow-up-right that include sending app inbox messages.

In order to include the contact in app inbox Campaignsarrow-up-right, you can subscribe the contact by setting the subscribedAppInbox attribute.

val attributes = Attributes()
    .put("displayName", "Roy Glass")
    .put("subscribedAppInbox", true)
bird?.contact?.putAttributes(attributes) 

Last updated

Was this helpful?