Provide Timezone for EU region to fetch the genesys data

we are using below api to retrieve the Genesys data
https://api.mypurecloud.ie/api/v2/analytics/conversations/aggregates/query

for NA region i am using timezone as below in java code and able to fetch all the data without any data mismatch issue
String startDateFormate = startDate.atZone(ZoneId.of("America/New_York")).format(formatter);
String endDateFormate = endDate.atZone(ZoneId.of("America/New_York")).format(formatter);

for EU region i am using UTC timezone as below in java code but there some slight data mismatch happening
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
String startDateFormate = startDate.format(formatter);
String endDateFormate = endDate.format(formatter);

could you please provide time zone for EU region which i need to apply so that data mismatch issue will be eliminated for EU region.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.