Use the GET method to return all Keystore Service (KSS) keystores for a stripe.
The following table summarizes the GET request parameters.
Name | Description | Type |
---|---|---|
stripeName |
Name of stripe for which you want to view all KSS keystores. | Path |
Media Types: | application/json |
The response body contains information about the certificate, including:
Attribute | Description |
---|---|
"keystore n " |
List of keystores in the stripe, where n serves as an index that starts at 1 and is incremented by 1 for each additional keystore. |
The following example shows how to view all certificates for an alias by submitting a GET request on the REST resource using cURL.
curl -i -X GET -u username:password http://myhost:7001/idaas/platform/admin/v1/keystoreservice/myStripe
The following shows an example of the response header. For more about the HTTP status codes, see "HTTP Status Codes for HTTP Methods."
HTTP/1.1 200 OK
The following shows an example of the response body in JSON format.
{ "keystore 1":"trust", "keystore 2":"castore" }