Returns 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 | 
|---|---|
| "keystoren" | List of keystores in the stripe, where nserves as an index that starts at1and is incremented by1for 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. For more information, see "cURL Access".
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 "Status Codes."
HTTP/1.1 200 OK
The following shows an example of the response body in JSON format.
{
    "keystore 1":"trust",
    "keystore 2":"castore"
}