Configuring Strapi Webhooks

Hello,
I need help configuring my Strapi.
We are using version 5.1 and we were having issues setting up webhooks on our server (error: public URL).

We would like to use another method for sending requests that is no longer via webhooks.
Our intention is for Strapi to send a request when we publish a content type and convert this JSON into markdown that will be directed to a repository in the HUGO framework. We used to handle this with a Python script that converted JSON into MD.

Is there anything already created in Strapi that can help us (PLUGIN, API, or a native Strapi configuration)?

This topic has been created from a Discord post (1291948555929649213) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Hi, i think i am using a similar setup, but using go - the error regarding public url is a bit strange, there is no reason to limit webhook to public urls - i am using strapi in a docker environment and send webhooks to a local service - if you drop the path and send the webhook to the root path of your service it is working…

for rendering the wysiwyg editor output you can have a look at my approch in go GitHub - cdreier/strapi-blocks-go-renderer: adaption of https://github.com/strapi/blocks-react-renderer to render the blocks editor output to html in go

this is working pretty well for us