Hi Aditya,
For that attribute completed I believe that attribute is a type of DateTime and you wanna set Localize to yes. Maybe this is something you need to solve your problem?
This attribute already checked the option as ‘Yes’, But still showing in UTC format.
Hi Aditya, have you tried to set the timezone for the API-user to an indian timezone (like kolkata/asia).
on this way a currentdatetime represents the indian time and a parsedatetime will use the indian timezone.
you can also set your default timezone in your app to your timezone in the runtime settings
One more question I have Change date and Create date is also showing in UTC format.
IST time zone is UTC +5:30. Mendix always saves dates in UTC format. When your API provides the dates you mentioned, it could transform them using the addHours and addMinutes functions, i.e.
addMinutes(addHours(createdDate, 5), 30)