Hi,
I’m new with Ampliture (and integration with it). I’m using Java SDK to send evemts to Amplitude.
amplitude.setLogMode(AmplitudeLog.LogMode.DEBUG)<br />amplitude.setEventUploadThreshold(100)<br />…<br />// define event and send<br />amplitude.logEvent(event)
It should be noted that I use Kotlin with courotines.
I’m trying to import to Amplitude my latest events (e.g. for last 3 days). I can see allmaust all events in Amplitude but `first_result`. Neither in Data → Events tab, nor in User Look-Up page.
Debug mode shows that everything was sent correctly.
SEND: Events count 100<br />RESPONSE: {<br /> "code": 200,<br /> "successBody": {<br /> "serverUploadTime": 1690390833497,<br /> "payloadSizeBytes": 74160,<br /> "eventsIngested": 100<br /> },<br /> "status": "SUCCESS"<br />}I’m sure that I set API key correctly.
Also, when I try to create custom event with this name I receive error “Unable to create an event with a name that already exists”
I’m out of options now and will be glad for help

