Clarify if HTTP Request runs in parallel or sequencially?

Just to clarify, I was wondering the same and I can say that

  • The order of results wont be messed up
  • But the requests are parallelized

To be sure I did the following test:

  • scenario A : webhook + sleep 2 seconds + responds
  • scenario B : making a array of 10 records and calling Scenario A webhook

Execution time of scenario B is 2 seconds and scenario A receives all requests at once:

Is actually the behaviour I was hoping for