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¶mB=1
paramA=1& paramB=2¶mC=3
where the actual number of parameters could be different and there could be a large number of them
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