Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data type mismatch for a custom event property #59

Open
umangzenius opened this issue Jun 2, 2022 · 0 comments
Open

Data type mismatch for a custom event property #59

umangzenius opened this issue Jun 2, 2022 · 0 comments
Assignees

Comments

@umangzenius
Copy link

For a custom event on clevertap, we are passing a string value for a particular property, but on clevertap events dashboard it is reflecting in integer formats.

Following is the code snippet we are using to record our custom events:

clevertap.event.push("submit_info", {
     user_info:"087888975005" // this property is passed as *string*
});

Here, the property user_info although passes as string, is reflecting as integer on the dashboard.

Alternately, for the same event if I limit the user_info property's value to 10 or less characters, it correctly reflects as a string on the dashboard.

clevertap.event.push("submit_info", {
     user_info:"0878889750" // "0878889750" instead of"087888975005"
});

We have also updated the custom event schema in project settings by defining the property to accept string format values only, but still the they are being populated in integer format.
blobid0

Please correct us if we are missing something here, although from our findings it is only happening in case of the property value being more than 10 characters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants