Handle secure booking requests coming from chat. The flow receives encrypted form data, reads the current screen, and returns the right options in real time. It fits teams that schedule visits, classes, or service slots over WhatsApp.
An incoming webhook collects a POST with three encrypted parts. The next step converts base64 strings into binary and uses a private key to unlock the data, which is a safe mix of RSA and AES. A parser cleans the payload and finds the screen value. A switch sends the data to the right branch, such as grouping appointment times or reading seat choices. One branch groups times by date and builds a clear list. Another branch extracts seats from the payload. The reply is then encrypted again and sent back through the webhook with a 200 code.
Set the webhook URL in your WhatsApp Business Platform app and paste your private key in the decryption node. Map field names to match your flow and adjust the switch rules for your screens. Expect faster replies, fewer errors, and clear choices for users. Good fits include clinics, salons, service teams, and training centers that take bookings inside chat.