Dear all,
I’m using the JS SDK to log events for interactions on my web application. I would like to replace selected fields that are automatically determined by the amplitude instance, for e.g. ip address, country, city, etc.
Is this possible? I’ve tried to use identify or setUserProperties
const identify = new amplitude.Identify().set('ip', '111.111.111.111');
amplitude.getInstance().identify(identify)
// or
amplitude.getInstance().setUserProperties({ 'ip': '111.111.111.111' });
but these will create a custom property instead.
Is there a way for me to replace the amplitude fields? (mainly the ip address detected by the amplitude instance) I’ve attached an image below indicating the value of the `IP Address` field that i’d like to change.
Note: I’d like to avoid creating a custom user property or event property for this ip address.
Thank you in advance for your help!