Detect status of native form validation before running custom validation
I'm working with some form embeds that have Global Validation Rules applied that restrict which email domains are allowed to submit the form. This is working as it should.
We'd like to use an email verification service's API as a second layer of validation on these forms only on the addresses that make it past the Global Validation Rules. I have this setup using the onValidate method but it fires every time, even if the email address doesn't validate with the Global Validation Rules.
Is there any way to run custom validation only after all other validations have passed? Thanks!