Hello, I’m trying to generate a Telegram invite link, however, it has an invalid date error!
Despite taking the now it returns me a very old date!
Can you help me identify where the error is?
Thanks!!
Hello, I’m trying to generate a Telegram invite link, however, it has an invalid date error!
Despite taking the now it returns me a very old date!
Can you help me identify where the error is?
Thanks!!
The epoch timestamp you are getting from the response is a string so you need to parse it first and then format it again.
{{formatDate(parseDate(result; "X"); "MM/DD/YYYY")}}
Thanks @Runcorn, it worked perfectly!