Hello,
I am tracking leads with contact tracking. I have added their email, username and number of files hosted with us.
We send email based on number of files threshold. For files_counts we have set custom fields with type “number” and default value 0. It is updated when users login to their profile.
mt('send', 'pageview', {email: 'user@email.com', firstname: 'username', company: 'company', file_count: '10', opt: '0', tags: 'tag_name'});
The problem is, when any user has 0 files, or opt value is 0, it is not reflected on their contact on mautic.
For e.g. if user had 10 files, it is reflected on mautic on custom field.
But, when they delete their file, the value ‘0’ is never updated. However, anything greater than 0 is processed, and updated in the custom field.
Does mautic custom field type “number” doesn’t accept ‘0’ as value?
If yes, what is the solution for this?
I really need the value 0 to be populated in the custom field somehow.