Subscribe contacts to app inbox campaigns
val attributes = Attributes()
.put("displayName", "Roy Glass")
.put("subscribedAppInbox", true)
bird?.contact?.putAttributes(attributes) let attributes = Attributes()
.put("displayName", "Roy Glass")
.put("subscribedAppInbox", true)
bird?.contact.putAttributes(attributes: attributes)Bird.eventTarget.addEventListener('bird-sdk-initialized', async () => {
await Bird.contact.putAttributes({
displayName: "Roy Glass",
subscribedAppInbox: true,
});
});Last updated
Was this helpful?

