Hello everyone,
I had a use case where we need to report the video activities watched by the user.
I was using the custom attributes to save the video activities.
The custom attribute I created was video_view with a datatype of list.
Now every time a user watches a video I update the list attribute with a new video name and then update the video_view (custom attribute) value to this video name in the lead data.
Now the issue is, if 2 videos are watched by the lead we would have to add 2 values to video_view(custom attribute) but the list attribute can only store 1 video name at a time whereas the user watched 2 videos.
So I was thinking of custom attribute which can have multiple values.
If there is any better approach let me know.
Also why I am using custom attribute is because operator on the Intercom can easily filter out the user based on the video name.
If possible can we have an object type in custom_attribute so that we can store further details in the same attribute?