Notify webhook about all inbox events

Greetings from :poland: to whole LAGM community! I need your brains… Webhooks Driving Me Nuts :weary_face:

I’ve been trying to send all inbox events to a webhook, and I swear I followed the API docs step by step. It worked at first… then I changed something (I honestly can’t recall what), and now it’s just stopped working.

I ran this API call to check how the webhook is set up:
GET https://apiv2.lagrowthmachine.com/flow/inboxWebhooks?apikey=[key]

and got this result which i believe is squeaky clean:

[
{
“id”: “[numerical webhook ID here]”,
“url”: “https://api.clay.com/v3/sources/webhook/[webhook id here]”,
“key”: “Clay Webhook”,
“type”: “INBOX_EVENT”,
“campaigns”: [
“all”
],
“createdAt”: “date here”
}
]

WHY am I not receiving the SENT/RECEIVED events? Any ideas what I might be missing?

Would really appreciate any hints before I lose my sanity over this :sweat_smile:

1 Like

all right sorted out. all works as advertised, this was my fault of course.
cheers and best to y’all !

Thanks for the update and glad you got it working! Setting up a webhook for all inbox events can be super powerful for automation — once it’s configured right, you can push sent/received events to your own systems in real time. @Golf Hit

@Dinosaur Game If your webhook config looks correct, the issue is likely on the receiving side—check if your endpoint is returning a 200 OK and not timing out or rejecting requests. Also verify that events are actually being triggered (e.g., new inbox activity) and that nothing was changed in permissions or campaign settings. Finally, try re-creating the webhook or updating it, as a small config change can silently break delivery.