I currently try to add a array-based GET parameter to my url using the query tab.
However, i am not able to append that [] to the very end of the parameter names properly due to conversion (gets to their respective URLEncoded codes %5B%5D)
is there any way to add array based query parameters which i just missed?
馃憢 Thanks for opening your first issue! If you're reporting a 馃悶 bug, please make sure
you include steps to reproduce it. If you're requesting a feature 馃巵, please provide real
use cases that would benefit. 馃應
To help make this a smooth process, please be sure you have first read the
contributing guidelines.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
uhm ... this may be stale but the question still remains unanswered lil bot.
This might be a potential workaround for now https://github.com/getinsomnia/insomnia/issues/1182
@gschier why? Why workarounding something that should work out of the box? Maybe in the next version of Insomnia, we may see an array support.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
any updates?
I managed to pass the array parameters like this:

Works just fine :)
I have the same question, I need send an array by insomia to my mongoDB. I'm using the next code:
{
"users": ["i76trdfghjk", "i65rdfgiol"]
}
But it does not work. the result is:
{
"error": "",
"body": [
{
"users": [],
"_id": "5f0d49cf80697d62e4ea283b",
"__v": 0
}
]
}
A empty array.
Most helpful comment
I managed to pass the array parameters like this:
Works just fine :)