How do the Date Visual Coding blocks work? | Aquro Help Center

Date.Get.Current

Returns the current date.

Parameters:
None

Return values:
NumericDate (Value) - Numeric representation of the date
TextValue (Value) - Current date in a string
UTCValue (Value) - Current date in UTC format
Year (Value) - Current year
Month (Value) - Current month
Day (Value) - Current day of month
Hour (Value) - Current hour
Minute (Value) - Current minute
Second (Value) - Current second

Date.Get.FromString

Parses a string for a date and returns its value.

Parameters:
DateString

Return values:
NumericDate (Value) - Numeric representation of the date
TextValue (Value) - Current date in a string
UTCValue (Value) - Current date in UTC format
Year (Value) - Current year
Month (Value) - Current month
Day (Value) - Current day of month
Hour (Value) - Current hour
Minute (Value) - Current minute
Second (Value) - Current second

Date.Add

Adds time to a date and returns the new date.

Parameters:
NumericDate (Value) - Numeric representation of the date
Years (Value) - Years to add
Months (Value) - Months to add
Days (Value) - Days to add
Hours (Value) - Hours to add
Minutes (Value) - Minutes to add
Seconds (Value) - Seconds to add

Return values:
NewNumericDate (Value) - Numeric representation of the date

Date.Format

Returns a formatted string of a date.

Parameters:
NumericDate (Value) - The numeric value of the date to be formatted.
CustomFormat (Value) - Your custom date format string - read more.

Return values:
ISO - ISO formatted date string (YYYY-MM-DD HH:MM:SS)
ISODate - ISO formatted date string (YYYY-MM-DD)
CustomFormatted (value) - Value formatted by the custom format

Outlets:
Done - Called when done