9

In Paw, I have a POST request that returns a binary (excel file). How do I download it rather than see the binary output in the raw output.

2 Answers2

13

You can go to the File menu and pick Export Response then Response Body.

Export a binary response from Paw

Micha Mazaheri
  • 3,481
  • 1
  • 21
  • 26
1

Use the curl exporter, and perform the curl request in your terminal of choice. Add a -o yourfile.xlsx option to the given command-line, and voila.

Cyrille
  • 25,014
  • 12
  • 67
  • 90