About the Users Resource

You can use LogicMonitor’s REST API to programmatically manage the users in your account.   Using LogicMonitor’s REST API, you can: Get a list of all users Get information about a particular user Add a user Update a user Delete a user Note: As with all of our API calls, authentication is required.     … Continued

Add Users

You can use LogicMonitor’s REST API to programmatically add users to your account. Note: As with all our API resources, authentication is required. Add a User HTTP Method:POST URI: /setting/admins Request Parameters:You can POST the following properties for a new user Property Description Type Required? roles The roles assigned to the user JSON Object yes … Continued

Update Users

You can use LogicMonitor’s REST API to programmatically update users in your account. Note: As with all of our API calls, authentication is required. HTTP Method: PUT Resource URI: /setting/admins/{adminID} Where adminID is the ID of the user you’d like to update. You can include the following parameters in your PUT request.   Notes: Consistent … Continued

Get Users

You can use LogicMonitor’s REST API to programmatically get information about users to your account. You can use the users resource to: Get information about all users in an account Get information about one user in an account Note: As with all our API resources, authentication is required. Get information about all users in an … Continued

Delete Users

You can use LogicMonitor’s REST API to programmatically delete users in your account. Note: As with all of our API calls, authentication is required. HTTP Method: DELETE Resource URI: /setting/admins/{adminID} Where adminID is the id of the user you’d like to delete. Example The following Python script deletes user 32 from account api.logicmonitor.com: