I have the following question, I want to make a request for a POST, I have 13 different Body's in environment variables, how can I put all 13 at the same time in Postman to execute? Is there any way?
This is my code: Some Bodies:
{ "et": "conta", "na": "List", "T": "list", "OPT": [ "TL-1", "TL-2" ], "DBY": "names user", "iM": false }
{ "et": "conta", "na": "Integer", "T": "integer", "DBY": "namesUser", "iM": false }
{ "et": "conta", "na": "MultiSelectList", "T": "multiSelect", "opt": [ "L1", "L2", "L3" ], "DBY": "names user", "iM": true }
What I am doing but I get error 400:
[
{{List}},
{{Integer}}
]
So I would like to know if there is any way to be able to execute the 13 Body's placing them all at the same time