0

How can I convert milliseconds date to formatted date. I tried the following :

<set-body template="liquid">
    {                                           
        "date" : "{{ "1610924400000" | Date: "MM/dd/yyyy" }}"
    }    
</set-body>

But it prints :

{"date": "1610924400000"}

Is it possible ? How can i do this pls ?

anais1477
  • 466
  • 1
  • 17
  • 36

1 Answers1

-1

You should use "%m/%d/%Y" instead of "MM/dd/yyyy".

Liquid templates use the same format as Python's strftime. You can find the documentation about it here.