Necesito ayuda crear una notificación alerta

Buenas tardes, necesito de su ayuda en un proyecto que tengo.
los pongo en contexto, estoy creando una aplicación para atención de lavado de autos, tengo una tabla la cual se llama programación de citas. que contiene los campos de cliente, fecha, hora de inicio.
quisiera que appsheet me avise mediante una notificación 5 min antes de la cita.
si es posible me regalen indicaciones de como hacerlo, muchas gracias.
Traducir.

0 3 1,115
3 REPLIES 3

The “5 minutes before appointment” is going to be a tough ask though. Basically, you’d need individual Scheduled-Event Bots, one for approx every 5 minutes or something. That’d mean 12 Bots per hour, or 288 different Bots to cover an entire day. A bit un-realistic. Perhaps you could settle with just getting alerted about which appointments are coming up within the next hour. Or maybe find a solution elsewhere, perhaps a Google Apps Script, or some other web service.

Muchas gracias por tu respuesta, me sirve tu solución acerca de una notificación por hora, podrías darme las indicaciones, gracias

  1. Create an Event.
    a. Set it for any hour.
    b. Select the “ForEachRow” option, and select your Table.
    c. Set a condition, something like:
    [datetime-column] - NOW() < "001:00:00"
  2. Make X number of copies of the same Event (where X can be up to 24, for 24 hours), change the Hour for each Event.
  3. Create X Bots, one per Event.
  4. Create a single Process, with a single Task, to send the notification. Set this as the Process for each Bot

Review the help docs for more help.

Top Labels in this Space