SOLVED

How do I define a webhook to call the Vibes API?

Go to solution
Darshil_Shah1
Level 10 - Community Advisor + Adobe Champion

Re: How do I update a lead record using a Webhook(s)?

Ahh- the schedule tab! This is the first place I'd go when I don't see a person flowing through the campaign's flow, and then on to the smart list configuration if the qualification rules are fine. Thank you for posting an update here, @Guitarrista82! As always, I'm happy to help. Have a great weekend. 🙂

SanfordWhiteman
Level 10 - Community Moderator

Re: How do I update a lead record using a Webhook(s)?

Expanding on Darshil’s point, you really need to understand URL structure if you’re dealing with webhooks (or really with building URLs in general).

 

This URL:

 

 

https://api.example.com/person&212-555-1212

 

 

 

Could not be more different from this URL:

 

 

https://api.example.com/person?212-555-1212

 

 

 

The first has the pathname /person&212-555-1212. It has no query string.

 

The second has the pathname /person. It has the query string* ?212-555-1212. It has the query parameter 212-555-1212 with an empty value.

 

If a service is expecting the second URL it’s quite likely it will throw a 404 on the first, and vice versa.

 

 

* sometimes the query string is expressed with the leading ?, sometimes without, but they’re parsed identically

Guitarrista82
Level 6

Re: How do I update a lead record using a Webhook(s)?

Thank you Sanford! That was my bad with the URL configuration. I know how to configure them correctly--it was a mistake.

 

Appreciate your input!

 

LK