I am trying to send a rich link in the metadata of a custom event triggered with the intercom-go package.
In intercom’s dashboard, it reaches as aObject Object]. Is there any different input format expected for rich links in go, or is it just not supported?
event := intercomlib.Event{
UserID: userId,
EventName: eventName,
CreatedAt: int64(time.Now().Unix()),
Metadata: map string]any{
some_rich_link: map string]any{
"url": "https://www.some-custom-url.com",
"value": "some-custom-name",
},
},
}
ic.Events.Save(&event)