Get Website Properties

You can use LogicMonitor’s REST API to get all properties for a website.  Properties set directly for a website can be retrieved directly from the serviceProperties returned in the services resource, but in order to get inherited properties (properties set at the group level) you’ll need to query the properties sub-resource for a specific website. … Continued

Get all alerts for a Website

With LogicMonitor’s REST API you can programmatically get all alerts for specific websites in your account. Notes: As with all of our API calls, authentication is required To get alerts for all website, you should use the Alerts Resource     HTTP Method:GET URI: /service/services/{id}/alerts Request Parameters: By default, a list of 50 alerts will … Continued

Delete Websites

With LogicMonitor’s REST API you can programmatically delete your LogicMonitor websites. Delete a website HTTP Method:DELETE URI: /service/services/{id} Example: Delete a website The following Python request deletes the website with an id of 104:

Get all SDTs for a Website

With LogicMonitor’s REST API you can programmatically get the details for all SDTs scheduled for your LogicMonitor websites. Note: As with all of our API calls, authentication is required. HTTP Method:GET URI: /service/services/{id}/sdts Request Parameters: By default a list of 50 SDT properties will be returned for each result. You can include sort, filter, fields, … Continued

Update Websites

You can use LogicMonitor’s REST API to programmatically update websites in your LogicMonitor account. As with all of our API calls, authentication is required. There are two ways to update a website: PUT: A PUT request enables you to replace an entire website definition (and update fields in the process).  You should use PUT to … Continued

Add Websites

You can use LogicMonitor’s REST API to programmatically add new ping checks and web checks to your LogicMonitor account. Add a Website Add a new ping or web check HTTP Method:POST URI: /service/services Request Parameters:You can POST the following properties for a new website Property Description Required? Values Type name The name of the website … Continued

Get Websites

You can use LogicMonitor’s REST API to programmatically get information about your LogicMonitor websites. You can either get a list of websites or you can get details for a particular website. Note that scripted web checks will not be returned via v1 of the REST API, and that you should use v2 to get and … Continued

About the Service (Website) API Resource

The service resource allows you to programmatically manage your LogicMonitor websites. Using LogicMonitor’s REST API you can: Get a list of websites Get information about a particular website Add a website Update a website Get all SDTs for a website Delete a website Note: As with all of our API calls, authentication is required. Resource … Continued