Sending cookies with postman

I used the postman chrome extension until it became deprecated. Chrome extension is also less usable and powerful than the native postman application. Hence it became very inconvenient to use the chrome extension. I have found another approach: copy any request in chrome/any other browser as a CURL request import to postman copied request save … Read more

How do I format {{$timestamp}} as MM/DD/YYYY in Postman?

You could use moment.js with Postman to give you that timestamp format. You can add this to the pre-request script: const moment = require(‘moment’); pm.globals.set(“today”, moment().format(“MM/DD/YYYY”)); Then reference {{today}} where ever you need it. If you add this to the Collection Level Pre-request Script, it will be run for each request in the Collection. Rather … Read more

PayPal Transaction Search API: PERMISSION_DENIED, No Permission for the requested operation

You need the scope https://uri.paypal.com/services/reporting/search/read .. if it’s not there in the oauth2 response, double check your REST App’s permissions. Refreshing an access token Existing access tokens are cached for 9 hours–so if you already requested an API token and then just added this permission to your app, it can take up to 9 hours … Read more