How to transform time
Hello,
How can I transform the response time from API to an usual format (dd.mm.yyyy-hh.mm.ss)?
thanks
Tagged:
Best Answer
-
Most of the date/ times we return are epoch format, If you check your programming language there is normally a Library that can achieve this. For example in javascript moment.js can be used
moment.unix(1293683278).format('YYYY-MM-DD HH:mm:ss');