How to send array in x-www-form-urlencoded

Hello,

I am using v7.0.9. I would like to know if there is a way to send array ([“abc”,“def”]) as a parameter in x-www-form-urlencoded?

Thank you.

Hi @kizildagcenk,

You need to define array name as a “Key” and array elements as a “value”.
You’ll need to write something like this - (Please refer the screenshots)


This way you can post array using x-www-form-urlencoded.

1 Like

What code is used to handle the urlencoded request and return it as an array?