Rest Queries Date format

I created few rest api queries, that return json with few attributes of enty with date type. Format return is similar this:
yyyy-MM-dd HH:mm:ss.SSS = “2018-07-05 00:00:00.000”

how can I change format date or datetime for a date or datetime attribute of entity ? I tried to change from global project properties to relative language settings like follow, but result doesn’t change

image

Hi,

REST-API always sends date/time in the unified format. It is not for user interface, it is just a serialization format. You could use Date.parse in JS in order to load date instance and then format it with your own format string.

1 Like