Unanswered question

Programmatically add parameters to a request

How do I programmatically add parameters to a POST request

For example i want to make a call with a different number of params

paramA=1&paramB=1

paramA=1& paramB=2&paramC=3

where the actual number of parameters could be different and there could be a large number of them

Amit G.
Amit G.

Amit G.

Level
0
2 / 100
points

Answers

Change the post type from Form to Text, then paramaterise the part of the text that has the repeating parameters

${repeatingValues}

....where repeatingValues is constructed by you to be
p1=val1&p2=val2&p3=val3