'How can i use certificates with Postman when making a request?

I have a website configured in IIS that simply gets employee info via the following link

http://<my_computer_ip>:5559/api/Employee/GetAllEmployees, 

that works in Postman because i have a http binding on that port number and the data comes back ok.

I have another port in that same website in IIS configured as https and I have added the self signed certificate to it. The certificate I created from the server with a password. Now if i set SSL settings to Require SSL and Certificates as Require for the website in IIS I cant reach the site anymore

I call the url in Postman

 https://<my_computer_ip>:5556/api/Employee/GetAllEmployees

i get the following error:

SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER:../../third_party/boringssl/src...

Any ideas how i can test this via Postman ?

ssl


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source