Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Postman collections saved?

Where does the standalone Postman client for Windows save collections when working offline?

To clarify, I want to find where Postman saves collection files to by default when online syncing is disabled. I am not trying to export my collection as a JSON file.

I've looked in %LocalAppData%, My Documents, and Program Files, but I don't see where Postman saves its collection data.

like image 973
Stevoisiak Avatar asked Nov 20 '17 19:11

Stevoisiak


People also ask

Where does Postman save collection?

not the browser. my postman collections are saved locally on disk /postman/script/collection. json.

How do I find an old Postman collection?

If you delete a collection and want to recover it, go to the trash. Then, hover on the collection you want to restore and select the arrow icon to retrieve it. Alternatively, open the trash from the status bar in the bottom right corner of Postman.

How do I check my Postman collection?

Open the collection run in the Runner. You can also access the collection run using History in the sidebar if you don't have the run open. Select Export Results at the top right to download the run. Choose a location to save your downloaded collection run, then select Save.


2 Answers

It looks like Postman uses LevelDB. On Windows, I found my Postman DB located at:

C:\Users\xxxx\AppData\Roaming\Postman\IndexedDB\ 

According to Piere F, macOS users can find it under:

~/Library/Application Support/Postman/IndexedDB 

ps: Note "~" is path for "/Users/userAccount/"

According to David, Ubuntu users can find it under:

~/.config/Postman/IndexedDB 
like image 188
LeslieM Avatar answered Oct 14 '22 10:10

LeslieM


Postman is using Chromium offline storage capabilities because at the end it's a SPA running inside Chromium (Electron technology).

From Postman's top menubar:

  • Select View → Show Dev Tools
  • Select the Application tab
  • In the sidebar, open Storage → IndexedDB → postman - file:// → collection_requests
like image 22
A. Masson Avatar answered Oct 14 '22 08:10

A. Masson