Garry_V
February 13, 2026, 12:03pm
1
What is your goal?
Fill Query parameters HTML module’s field in Map mode.
For example, how to fill out this field like I filled “Name: filter[kind]” and “Value: quote” in the normal mode (non-Map mode)
What is the problem?
I don’t know how to convert “Name: filter[kind]” and “Value: quote” in one single field in Map mode
What have you tried so far?
[{“name”: “filter[query]”, “value”: “test”}] → Don’t work
[{“key”: “filter[query]”, “value”: “test”}] → Don’t work
Screenshots: scenario setup, module configuration, errors
samliew
February 13, 2026, 12:29pm
3
You cannot fill a field that expects an array , with a JSON string .
What you can do, is either use an Iterator-Aggregator combo (with “Target structure type” trick), or use a “Parse JSON” module.
— @samliew
Garry_V
February 13, 2026, 1:13pm
4
Ok, thank you @samliew
But anyway, how should I fill this field to simulate “Name: filter[kind]” and “Value: quote” for example ?
samliew
February 13, 2026, 1:18pm
5
You have to use a Parse JSON module, that outputs an array containing the array of KVP collections.
Then, you can map that array into the field.
— @samliew
Garry_V
February 13, 2026, 1:28pm
6
Is it possible to send me an example please?
samliew
February 13, 2026, 1:53pm
7
Basically, run the HTTP module once, then copy the input bundle into the Parse JSON module. Run the Parse JSON module once, then map the “queryParameters” variable into the “Query” field.
Hope this helps! If you are still having trouble, please provide more details .
— @samliew
1 Like
samliew
February 13, 2026, 10:21pm
9
Did you paste the whole output bundle? I provided a cropped portion of relevance. If you just want to paste that section, you’ll have to remove the end comma and wrap it in another set of curly brackets.
— @samliew