Error FormatDate, Invalid Date

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!!


image
image

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")}}

2 Likes

Thanks @Runcorn, it worked perfectly! :clap: :pray: