I added some custom attributes like lead_id and lead_email.
I tried to send those under custom_attributes or directly. Both failed.
intercom.boot({
...additionalSettings,
.lead_id: visitorId,
lead_email: email,
});
intercom.boot({
...additionalSettings,
custom_attributes: {lead_id: visitorId,
lead_email: email},
});I expect to see those in contact.merged or contact.user.created or contact.user.updated Webhooks but could not.
