# Edit SSL/TLS Certificate Monitor API Applications Manager's [SSL/TLS certificate monitoring](https://www.manageengine.com/products/applications_manager/ssl-certificate-monitoring.html) tool offers an API which allows you to edit the values provided in the SSL/TLS certificate monitor. ## Syntax ``` https://[HOST]:[PORT]/AppManager/xml/EditMonitor?apikey=[APIKEY]&type=SSLCertificateMonitor&resourceid=[RESOURCEID]&newdisplayname=[NEWDISPLAYNAME]&pollInterval=[pollInterval]&domain=[DOMAIN]&isProxyNeeded=[ISPROXYNEEDED]&protocol=[PROTOCOL]&timeout=[TIMEOUT] ``` **Supported HTTP method:** POST **Allowed roles:** Administrator ## Request Parameters | Field | Description | |---|---| | 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. | | protocol | The version of the SSL/TLS protocol. The value should be SSLv3 / TLSv1 / TLSv1.1 / TLSv1.2 | | timeout | The Timeout value, in seconds. | | [Other Common APIs](https://www.manageengine.com/products/applications_manager/help/edit-monitor-api.html) and [error conditions](https://www.manageengine.com/products/applications_manager/help/error-handling.html). | | ## 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&port=443&protocol=TLSv1.2 ```