Lots of developer will use the answer of chethandb but the problem (if like me) is not only to execute requests in mass but also save the reponses somewhere.

The RECIPIENTACCOUNT is a variable/parameter used in CSV and passed into each request.
- updating the initial request
Add the following code into the tab Tests:
let responses = pm.collectionVariables.get('collectionResponses')
if(responses) {
responses = JSON.parse(responses);
} else {
responses = []
}
responses.push(pm.response.json());
pm.collectionVariables.set('collectionResponses', JSON.stringify(responses));

Make a csv containing the parameters (in my case the ibans of the customers).
/home/rudy/Desktop/recipientaccount.csv
I do not disclose the recipient accounts of our customers.

Important to notice that RECIPIENTACCOUNT is used into the request as a parameter.
Then you are ready to go.
- Execution of the requests

Click on the arrow on the right (not displayed because it disappears).

Click on run. A new windows is opened.

Click on 'select File' to make a file selection and choose (for example) recipientaccount.csv.
Click on 'Save reponses'.
Change 'Iterations' (if needed).
You can 'preview' if you want.
Click on the blue button (Run Customer reachability in my example).
The requests are executed (sequentially).
I have limited the number of requests to 3 (the picture displayed '1', sorry)
All the 3 requests were executed correctly.
- Now time to get the results.
Close the 'collection runner' window.
Back to 'Customer Reachability'
Click on the 3 dots on the right and on 'edit'

Click on variables and make a selection and copy the results from 'CURRENT VALUE':
[{"data":{"id":"NOT DISCLOSED","type":"zoomitCustomerSearch","attributes":{"customerReference":"0193:IBN_BE_NOT DISCLOSED","status":"not-reachable"}}},{"data":{"id":"NOT DISCLOSED","type":"zoomitCustomerSearch","attributes":{"customerReference":"0193:IBN_BE_NOT DISCLOSED","status":"not-reachable"}}},{"data":{"id":"NOT DISCLOSED","type":"zoomitCustomerSearch","attributes":{"customerReference":"0193:IBN_BE_NOT DISCLOSED","status":"not-reachable"}}}]
The results are one one big line. You have to make usage of sed/awk/... to format the resuls as desired.