I am having an API-Endpoint and Authtoken for that API
the said API is for .XLS report download, how can i view the downloaded .xls file using (if possible) POSTMAN?
If it is not possible using postman what are the other programmatic ways I should be looking for?
If the endpoint really is a direct link to the .xls file, you can try the following code to handle downloading:
All you should need to do is set the proper name for the auth token and fill it in.
Example usage:
Try selecting "send and download" instead of "send" when you make the request. (the blue button)
https://www.getpostman.com/docs/responses
"For binary response types, you should select “Send and download” which will let you save the response to your hard disk. You can then view it using the appropriate viewer."
In postman - Have you tried adding the header element 'Accept' as 'application/vnd.ms-excel'