Hey there,
I'm using the Intercom JS messenger widget. I'd like to pre-populate it with information from my app (name, email and a few custom fields).
I see a few possible ways to kind of do what I'm looking to do, but they all require a `user_id`, which I believe is the intercom user ID.
Is there a way to configure the Messenger without knowing the intercom user ID? Ideally something like —
window.intercomSettings = {
app_id: YOUR_APP_ID,
user: {
email: THE_EMAIL
user_id_on_my_app: THE_ID
custom_attribute: SOMETHING
}
}
Is that possible?