Hey all! It seems like @michael291 may have ended up using a Formatter step and {{zap_meta_human_now}} to output the date and time a Zap runs as GetUWired suggested. But I thought I’d follow up here to confirm that it is possible to output the date and time a Zap runs using Python.
For example this Python code:
from datetime import datetime
time_now = datetime.now()
date_time = time_now.strftime("%Y-%m-%d %H:%M")
return {
'Date and Time': date_time
}
would create a field called Date and Time with the current date and time:

Which you could then select in subsequent steps:

And if you wanted to output just the date you could adjust the code so that only the date is output:
from datetime import datetime
time_now = datetime.now()
date_only = time_now.strftime("%Y-%m-%d")
return {
'Date': date_only
}
Like so:

You can find out more about the different date formatting options available in Python here: strftime() and strptime() Format Codes 