def tell_amplitude_account_created(user_id:int, account_id:int):<br /> """<br /> server_side API to Amplitude about account_created<br /> """<br /><br /> client = Amplitude(AMPLITUDE_API_KEY)<br /><br /> # see <br /> # One of user_id and device_id is required<br /><br /> # Track events with optional properties<br /> # identify_obj=Identify()<br /> # identify_obj.set("account_id", str(account_id))<br /> # client.identify(identify_obj, EventOptions(user_id=str(user_id)))<br /> client.track(<br /> BaseEvent(<br /> event_type = "account_created",<br /> user_id = str(user_id),<br /> event_properties = {<br /> "signup_via": "github",<br /> }<br /> )<br /> )
Under data

Nothing shows up. HOw do i troubleshoot this?
Please make it easy for me to troubleshoot. I’m seriously considering to move to mixpanel if this is too difficult