Hello Community,
We have just implemented Neverbounce Email verification tool.
We are looking to automate the process to update records via a webhook so it can be done for example when a record MQL or a record is created an deemed Marketable. . We are not developers so I am hoping we can get it done without any other 3rd party tool and an easy setup in Marketo webhook section.
We would be grateful for some help on how to do it.
Thank you
Axel
Solved! Go to Solution.
It’s documented here: https://developers.neverbounce.com/v4.0/reference#single-webhooks
Simple GET webhook, include the token in the URL like email={{lead.Email Address}}
Response payload is doc’d here: https://developers.neverbounce.com/reference#single
It’s documented here: https://developers.neverbounce.com/v4.0/reference#single-webhooks
Simple GET webhook, include the token in the URL like email={{lead.Email Address}}
Response payload is doc’d here: https://developers.neverbounce.com/reference#single
Thanks Sanford. I had a feeling you'd be the first to reply 🙂
Here is what i did. Is that correct?
- will this check push the email to NB, NB verifies it and send back the result in the correct field?
Thanks
Axel
hi Sanford
Thanks for the feedback. OK so we managed to see the request in Neverbounce and neverbounce provided the verification status. Unfortunately the data is not coming back to Marketo. we added the response field.
Thanks
Axel
Well, your Response Mappings don’t really have anything to do with the actual response JSON!
You’re referencing a property called "NeverBounce Validation Result" but that doesn’t appear in the JSON.
As you can see in the Details, the JSON is like
{
"status" : "success",
"result" : "valid",
/* ... more properties... */
}
So assuming neverBounceValidationResult is a Boolean field, your Response Mapping should be
status → neverBounceValidationResult
Thanks Sanford. I did indeed figured it out in the meantime. It is great to have your feedback that validate and confirmed what we did. Thank you for putting us on the right path.