Ability to loop a complete datafile with some delay

Hi all,

I am new to postman.

I am using datafiles in order to loop over 1 field and POST it. For example, my data files contains the following
subscriber_id
22669
117
25257

I am then using the collection runner and select iterations=3 for the request to be sent out fully. The preview of the file then look like this
Iteration subscriber_id

    1 "22669"

    2 "117"

    3 25257 

However, I would like to loop several times between this full file. This means posting 22669, 117 and 25257 x times with a delay in between.

Example

i=0
POST the 3 subscriber IDs
Wait 10 min
i+1
Until i=10

Is it possible to achieve that ?

Many thanks for your help.