[Webinar] Discover key trends and best practices in Kubernetes observability with DevOps expert, Viktor Farcic.Register now
Our recognition in the inaugural Gartner MQ for DEM

Edit SSL/TLS Certificate Monitor API


Applications Manager's SSL/TLS certificate monitoring tool offers an API which allows you to edit the values provided in the SSL/TLS certificate monitor.

Syntax

By Display Name:

https://[HOST]:[PORT]/AppManager/xml/EditMonitor?apikey=[APIKEY]&type=SSLCertificateMonitor&displayname=[DISPLAYNAME]&newdisplayname=[DISPLAYNAME]&pollInterval=[pollInterval]&domain=[DOMAIN]&port=[PORT]&isProxyNeeded=[ISPROXYNEEDED]&ignoreHostNameError=[IGNOREHOSTNAMEERROR]&timeout=[TIMEOUT]

By Resource ID:

https://[HOST]:[PORT]/AppManager/xml/EditMonitor?apikey=[APIKEY]&type=SSLCertificateMonitor&resourceid=[RESOURCEID]&newdisplayname=[NEWDISPLAYNAME]&pollInterval=[pollInterval]&domain=[DOMAIN]&isProxyNeeded=[ISPROXYNEEDED]&ignoreHostNameError=[IGNOREHOSTNAMEERROR]&timeout=[TIMEOUT]

Supported HTTP method: POST

Allowed roles: Administrator

Request Parameters

FieldDescription
domain The domain name for the SSL/TLS certificate which should be monitored.
port Port in which the server is running.
isProxyNeeded Yes, if server is connected through proxy. No, if its not.
ignoreHostNameError Yes, to ignore Certificate name mismatch error.
timeout The Timeout value in seconds
Other Common APIs and error conditions.

Sample Requests

  • https://apm-prod-server:8443/AppManager/xml/EditMonitor?apikey=aaaaaabbbbbbccccccddddddeeeeee&type=SSLCertificateMonitor&resourceid=10000661&pollInterval=10
  • https://apm-prod-server:8443/AppManager/xml/EditMonitor?apikey=aaaaaabbbbbbccccccddddddeeeeee&type=SSLCertificateMonitor&resourceid=10000661&domain=zoho.com
  • https://apm-prod-server:8443/AppManager/xml/EditMonitor?apikey=aaaaaabbbbbbccccccddddddeeeeee&type=SSLCertificateMonitor&resourceid=10000661&timeout=60
  • https://apm-prod-server:8443/AppManager/xml/EditMonitor?apikey=aaaaaabbbbbbccccccddddddeeeeee&type=SSLCertificateMonitor&resourceid=10000661&isProxyNeeded=Yes
  • https://apm-prod-server:8443/AppManager/xml/EditMonitor?apikey=aaaaaabbbbbbccccccddddddeeeeee&type=SSLCertificateMonitor&resourceid=10000661&domain=zoho.com&isProxyNeeded=No&timeout=60&ignoreHostNameError=Yes&port=443
Back to Top