Does anyone have the postman structure of Mautic’s webhooks?
I have a java api (spring boot) that expects a POST and a text-type payload, which works using curl and postman, but when I click on send payload in mautic’s webhook, it does not send the data.
If anyone has a more detailed document of the http structure I would be grateful
I’m sending this curl to my java server, (curl generated by webhook.site and should be the same request from mautic), with curl I’m successful, but when I’m in mautic and I click on test webhook I’m not successful
I ran the example in node/express which is in the webhook example of the mautic repository and likewise my mautic does not call my api http://45.191.91.7:3000/webhook
So you want to send the web hook from Mautic to your Java Server?
My suggestion was: understand how the web hook of Mautic is build up, by sending it to e.g. webhook.site. Then you know how you need to build the receiver within your server.
The web hook of Mautic works fine and sends a lot of data reliantly. So when your server doesn’t receive data, its likely that the receiver doesn’t parse it correctly?