In rest connector, how do I use x-www-form-urlencoded in input body?

Hi,
For this service that is using x-www-form-urlencoded parameters in the input body, got it working in postman. But how do I translate this in flow?

image

Hi,
You need to create the variables as FormData and then change the content typ for the header to application/x-www-form-urlencoded. Take a look at this for more info:

Oh I see, the content type is set on the header of course. Makes sense, thanks!