altomarketing
altomarketing
TTypebot
Created by altomarketing on 12/30/2024 in #help-and-questions
Script to determinate Country from phone number
If Phone has the number of visitor, how can save in variable Country the country , based on phone number? I tried this code but it does not work // Obtener el número de teléfono de la variable Typebot let phone = "{{Phone}}"; // Función para determinar el país basado en los dos primeros dígitos del número de teléfono function determineCountry(phoneNumber) { let countryCode = phoneNumber.substring(0, 2); let country; switch (countryCode) { case "54": country = "Argentina"; break; case "59": country = "Uruguay"; break; case "52": country = "Mexico"; break; case "1": country = "Usa"; break; default: country = "UNKKNOWN"; break; } return country; } // Determinar el país y guardarlo en la variable countryfinal let countryfinal = determineCountry(phone); // Establecer la variable country en Typebot setVariable('country', countryfinal); Because The country is {{Country}} , always shows UNKNOWN
27 replies
TTypebot
Created by altomarketing on 2/17/2024 in #help-and-questions
Whastapp i can not send Media, it show " .... " inside Whatsaspp
No description
16 replies
TTypebot
Created by altomarketing on 2/15/2024 in #help-and-questions
Whastapp + wait , how to resend to abandoned flows..
I use the official WhatsApp API, where once communication is established, I have 72 hours to continue sending a message to the client's WhatsApp, at no additional charge. I would like to send the message if the person left the flow, I imagine with the wait command (1 hour), let's say. this would be possible ? What should the flow be like?
3 replies
TTypebot
Created by altomarketing on 1/17/2024 in #help-and-questions
How can i split the bot depending the real hour time ?
I use the bot to give support, and i would like to do this: Its working hour ? > goes to Chatwoot Its night ? > goes to create a ticket How can i do that ? javascript maybe ?
6 replies