I got to send the Base64 Stream to couple of my POST APIs, I have collection with more then 20 POST request objects with Base64 stream in them, this makes by POSTMAN heavy and sometimes it fails to launch the application itself.
Is there a smart way of dynamically sending the base64 stream on Run time instead of storing it in the request object ?
For example -
- I want to keep all my files in local drive.
- And refer that specific file location in each of those request objects.
- On Runtime the file should get converted in Base64 stream.