Entire $_Post string in Server connect

Is there an easy to to send an entire Post string to an API in server connect?

I have a from on a page that is very long, and I just want to send the entire $_POST url into the API on the server side. Is there a way to do that without doing each separate $_Post values?

AI says {{$_POST}} should do the trick so I will try that!

well that didn’t work out…

Hi Baub,

Add a Set Value step with $_POST as its value with output enabled. This will output the complete resposne in dev console, and that will give you an idea whether saving the entire POST string is going to work for your use case.

Screenshot 2025-11-15 at 11.39.57 am

If you still need help, could you please show what you're trying to do? My first reply would also be {{$_POST}}, but I can't imagine what you're trying to do

But just for the sake of completeness, you may want to JSON encode $_POST, so you need to use the JSON encode formatter, and it's probably not in the UI despite a feature request (unless they added it)

There are 185 fields in the form sending the data. I rebuilt this form to use in wappler from a form that someone else did using AI. It sends the data to a chatbot. So I was hoping I could just send the whole string the way the other form was as the chatbot is already trained to receive the data that way. If not I’ll have to manually key in all the fields to the api call.

1 Like

Try the JSON encode formatter as I mentioned :slight_smile: