Hi,
I am trying to understand if we can use cert as authentication process instead of password for REST APIs access
I checked the API document and all I can see is password based authentication only (below content is from API documentation)
#####################################
HTTP authentication Process for REST API:-
At an HTTP level, basic authentication is used for the API transactions. An HTTP header with the user name and password in a base64 string is added to each request
curl -X GET -u username:password -k 'https://<ip_address>/api/cluster? fields=version'
#####################################
Any idea if we can use purely use certs for authentication, basically I am trying to implement password less authentication. Kindly let me know, Thanks.
Thanks,
-Srini