Fetch the UTC time
Submitted by:
Evan Drake
This function fetches the UTC timestamp from WorldTimeAPI.
1
2
3
4
5
6
7
8
9
const config = {
url: "https://worldtimeapi.org/api/timezone/Etc/UTC",
};
const response = await Functions.makeHttpRequest(config);
const datetime = response.data.utc_datetime;
return Functions.encodeString(datetime);