So I have this huge file of json requests that I need to send to an API through POST, they are about 4000 different requests. I tried the CSV method and reference the JSON_FILE in code but it didn't work due to a timeout error, I think 4000 files is just too much for this method
I could create 4000 thread groups, each one with it's individual json request but that would be a huge manual labor
Is there anyway to automatize this process?
The json looks basically like this
{
"u_id": "00",
"u_operation": "Address",
"u_service": "Fiber",
"u_characteristic": 2,
"u_name": "Address #1"
},
{
"u_id": "01",
"u_operation": "Address",
"u_service": "TV",
"u_characteristic": 2,
"u_name": "Address #2"
}
All the way up to 4000

