Q: Can I OTP verify a form submission using your tool?
I have a OTP service provider who gave me an API. Is it possible to integrate that API into the forms?
The basic requirement is this:
1. I should be able to validate the form submission via an OTP that is sent to his mobile number.
2. The form data should be pushed to API URL using GET request.
Is that something that can be made possible with your tool?
Surjith_Web3Forms
May 15, 2024A: Web3Forms provides a webhook where you can send the data to transform for your needs.
Or, if you want to validate the API before submitting the form, you have to make your code something like this:
1. Create a form to collect email/phone to send OTP using your provider
2. Use their API to validate the email/phone with OTP
3. Now, if the otp is valid, send that stored data + any additional data to Web3Forms using our API which will be sent to your email.
Does this work for you?