# Time

Defines that step will wait for visitor to select and submit hours and minutes (period is optional).

Preview

# Time format

  • Auto-detect - automatically detects user clock format
  • 12-hour clock - uses 12-clock time-picker
  • 24-hour clock - uses 24-hour clock time-picker
12-hour clock 24-hour clock
12 hour 24 hour

# Output

The output of the step will contain the chosen by the user time in selected format.

The structure of the output for 24-hour clock is:

{
    time: '09:15 AM'
}

The structure of the output for 24-hour clock is:

{
    time: '09:15'
}

# Use function to define user answer

Allows to override default answer by custom message.

# Available variables

The same as output example.

{
  time: ''
}

# Example

return `Signature URL: ${image}`
# Step configuration:

Custom answer step configuration

# Result:

For 12-hour clock

Custom answer result

For 24-hour clock

Custom answer result

Last Updated: 2/19/2022, 11:17:08 AM