### [Insert timestamp in Postman](https://stackoverflow.com/questions/65120584/insert-timestamp-without-milliseconds-only-10-digits-in-postman)
pre-request script:
```js
const moment = require('moment');
pm.globals.set("currenttime", moment().valueOf());
```
Body:
```json
{
"time":{{currenttime}}
}
```