Hello,
we are required to disable ip address tracking. However, we do have our own GeoIP running, and I would like to sent the country.
I’ve tried like this with the typescript sdk, but it doesn’t work (I tried `country` and `Country`):
// ...
identify = identify.set("account type", accountType);
const userCountry = ...;
if (userCountry) {
identify = identify.set("country", userCountry);
}
this.client.identify(identify);
// ...
It is set as a user property, and not as the Amplitude property:
Is this possible at all?
Regards
Christian