Hey all,
Working on a simple digital bot flow to greet people on our website and setup voice callbacks with them.
The one issue I'm running into is thinking of the least painful way to figure out what time zone they are in to correctly set the time for a callback. I'm thinking of asking for their zipcode, but then there is not easy out of the box way to use that to offset the time they have chosen.
I would either have to pay for an API to do a lookup, or build a very complex expression using regex to compare the zipcode to a range of codes that are in a state, then use that to make the UTC offset. Additionally, I'd need to make a date lookup to see if it's DST or not. Very painful.
Would love some ideas or examples if anyone has other ideas!