We send purchase process in RevenueCat to AppsFlyer by integration.
AppsFlyer receive the following abbreviated JSON data.
{
“appsflyer_id”: “12345678",
“customer_user_id”: “ABCDEFGH",
“eventName”: “trial_converted_event”,
“eventValue”:
“{\“af_revenue\“: \“10.00\“, \“renewal\“: \“true\“, \“af_currency\“: \“USD\“}”,
“af_events_api”: “true”,
“eventCurrency”: “USD”,
// It’s JST time.
“eventTime”: “2022-03-09 10:43:01.000”,
…………
}
Our timezone is JST, so eventTime parameter is currently in JST.
But We somehow want to set eventTime to UTC and send it to AppsFlyer.
Please let me know if you can shed any light on this.