Loads appointments for a user identified by an email address.
IAppointmentsContextcurrent default, past or all10status, name of the variable that contains additional information (appointments : array of appointments, timezone: preferred timezone)DEFAULT will use default timezone from referenced appointments context, CLIENT will try to get client information or SET will allow you to explicitly set the value.timezone_mode is SET. PHP timezone name.Example of ${status.appointments} Return Variable Name value:
[
{
"appointment_id" : "123",
"timestamp" : 123345678,
"payload" : {
"some_other_fields" : "That is used by implementing appointment context & WP plugin",
"more_fields" : "Some other data"
}
},
{
"appointment_id" : "123",
"timestamp" : 123345678,
"payload" : {
"some_other_fields" : "That is used by implementing appointment context & WP plugin",
"more_fields" : "Some other data"
}
}
]
Multiple - if status variable Return Variable Name contains at least two appointments or no elements are present in Single or Empty, Multiple flow will be executedSingle - if no elements are present in Single flow and status variable Return Variable Name contains only one appointment, Multiple flow will be executedEmpty - if no elements are present in Empty flow and status variable Return Variable Name has no appointments, Multiple flow will be executed