APIGEE Edge Keystore

Is there any Management API GET operation which will return the alias which is used in the API call for uploading a JAR in a keystore ?

0 1 249
1 REPLY 1

Not applicable

Hi @snehal chakraborty, Try the API mentioned in the below link

http://docs.apigee.com/management/apis/get/organizations/%7Borg_name%7D/environments/%7Benv_name%7D/...

You will a response like below

	<KeyStore name="Keystorename">
	<Certs>
        <Cert>XXX.com.pem</Cert>
	</Certs>
	<Keys>
	<Key>$keyalias</Key> // I believe this is what you want?
	</Keys>
	</KeyStore>