How can I call an endpoint after a specific amount of time. How can I replicate this in postman?
Something like a schedule runner just for an endpoint not a whole collection
```
var logMe = function () {
console.log(‘This will be the function calling the api’);
};
setTimeout(logMe, 2000);