Returns all aliases for the trusted certificate entries in the JKS keystore.
| Media Types: | application/json | 
The response body contains the list of aliases:
| Attribute | Description | 
|---|---|
"aliases" | 
Comma-separated list of aliases. | 
The following example shows how to view all aliases for the trusted certificate entries in the JKS keystore by submitting a GET request on the REST resource using cURL. For more information, see "cURL Access".
curl -i -X GET -u username:password http://myhost:7001/idaas/platform/admin/v1/keystore
The following shows an example of the response header. For more about the HTTP status codes, see "Status Codes."
HTTP/1.1 200 OK
The following shows an example of the response body in JSON format.
{
   "aliases":"oratest,orakey,testkey,jkstest,ms-oauthkey"
}