SOLVED

Neverbounce - Webhook Help to set up

Go to solution
Abaran
Level 5

Neverbounce - Webhook Help to set up

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

2 ACCEPTED SOLUTIONS

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Neverbounce - Webhook Help to set up

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

 

View solution in original post

SanfordWhiteman
Level 10 - Community Moderator

Re: Neverbounce - Webhook Help to set up

The Request Type is GET.

View solution in original post

6 REPLIES 6
SanfordWhiteman
Level 10 - Community Moderator

Re: Neverbounce - Webhook Help to set up

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

 

Abaran
Level 5

Re: Neverbounce - Webhook Help to set up

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?

 

NB Webhook.png

Thanks

Axel

Tags (1)
SanfordWhiteman
Level 10 - Community Moderator

Re: Neverbounce - Webhook Help to set up

The Request Type is GET.
Abaran
Level 5

Re: Neverbounce - Webhook Help to set up

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.

 

neverbounce.png

neverbounce2.png

Thanks

Axel

SanfordWhiteman
Level 10 - Community Moderator

Re: Neverbounce - Webhook Help to set up

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

Abaran
Level 5

Re: Neverbounce - Webhook Help to set up

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.