Expand my Community achievements bar.

Help shape the future of AI assistance by participating in this quick card sorting activity. Your input will help create a more effective system that better serves your needs and those of your colleagues.
SOLVED

Possible to change timezone in AEP?

Avatar

Community Advisor

Is it possible to see the timezone of the events you see in AEP? I have inserted an event with timestamp "2023-06-21T06:19:47.000Z" using the streaming API and when i see that event in the platform UI. I see time as 8:19 instead of 6:19.

 

arpang16406580_0-1687339283137.png

 

@arijitg 

 

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi @arpan-garg ,

 

You could use place context data type which describes the location information of the event. more details here:-

https://experienceleague.adobe.com/docs/experience-platform/xdm/data-types/place-context.html?lang=e... 

 

For instance, you can add this datatype into your request load when you invoke the API

"placeContext": {
                "localTime": "2023-03-22T21:01:21.193-06:00",
                "localTimezoneOffset": 360
            },

 

Hope that helps!

 

Regards,

Nitesh

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

Hi @arpan-garg ,

 

You could use place context data type which describes the location information of the event. more details here:-

https://experienceleague.adobe.com/docs/experience-platform/xdm/data-types/place-context.html?lang=e... 

 

For instance, you can add this datatype into your request load when you invoke the API

"placeContext": {
                "localTime": "2023-03-22T21:01:21.193-06:00",
                "localTimezoneOffset": 360
            },

 

Hope that helps!

 

Regards,

Nitesh