List SSL Certificates in an Application Gateway (GET) 

 

Returns list of certificates in an application gateway.

Method

Request URI

GET

https://management.core.windows.net/<subscription-id>/services/networking/applicationGateways/<applicationGatewayName>/sslcertificates

URI Parameter

Description

api-version=<api-version>

Version of the API, set to 2015-04-01

The following table describes the request headers.

URI Parameter

Description

x-ms-version

Version of the API, set to 2015-04-01

If successful, the operation returns HTTP status code of 200(OK).

<?xml version="1.0" encoding="UTF-8" ?>
<ApplicationGatewayCertificates xmlns=”http://schemas.microsoft.com/windowsazure”>
      <ApplicationGatewayCertificate>
            <Name>mySslCert</Name>
            <Data>Base64-encoded-X509-representation</Data>
            <State>Provisioning</State>
      </ApplicationGatewayCertificate>
</ApplicationGatewayCertificates>
Show: