How to change a Post-Created Webhook Event Payload

Hey, there’s no built-in way in Discourse to send only a tiny part of the webhook payload, but a couple of ideas that might work:

- You could have a small proxy in the middle (like a tiny Node.js or Python endpoint) that gets the full webhook, strips everything except `topic_title`, then forwards it on. Super flexible and doesn’t touch Discourse itself.

- Or, if you’re up for it, a tiny Discourse plugin could listen to `on(:post_created)` and send only the fields you care about. Just a few lines in Ruby and you’re done.

- Another lazy option is to just let a tool like Zapier or n8n grab the full payload and map/filter it before it reaches your final system.

Nothing fancy, just some ways I’d play around if I needed only `topic_title` :slightly_smiling_face: