API Docs
No Results Found
Introduction

Introduction

Log360 Cloud's REST API allows the integration of Log360 Cloud modules with third-party applications and services.

This will enable users or developers to build custom applications with Log360 Cloud architecture as a foundation enabling secure, programmatic interaction for executing actions.

Log360 Cloud API provides Restful APIs and hence is independent of programming languages. You can develop applications in any programming language, and the response data is also language-independent and will be in JSON Format.

API Root Endpoint

Click to copy
https://log360cloud.manageengine.com/api/v1

Account ID

In Log360 Cloud, your business is termed as an organization. Each organization is independent with its account ID.

The parameter account_id must be sent as a header with every API request to identify the organization.

The account_id can be obtained from the GET /accounts API’s JSON response.

OAuth Scope : logs360cloud.accounts.READ

Request Example

Click to copy
$ curl -X GET 'https://log360cloud.manageengine.com/api/v1/accounts' \ -H 'Authorization: Zoho-oauthtoken 6e80xxxxxxxxxxxxxxxxxxxxxxxx8a80'

Response Example

{ "Accounts": [ { "account_id": "854966845", "name": "Standalone user" }, { ... } ] }

Multiple DC Support

Log360 Cloud is hosted across multiple data centers, which means the API domain URL differs for each center. This simplifies integration and prevents conflicts with browser extensions and the user's current session.

The various domains and their respective API domain URIs are:

Data Center Domain Base API URI OAuth URl
United States .com https://log360cloud.manageengine.com https://accounts.zoho.com
Europe .eu https://log360cloud.manageengine.eu https://accounts.zoho.eu
India .in https://log360cloud.manageengine.in https://accounts.zoho.in
Australia .com.au https://log360cloud.manageengine.com.au https://accounts.zoho.com.au
Japan .jp https://log360cloud.manageengine.jp https://accounts.zoho.jp

Note: The API URLs listed in this documentation are for .com domain. If your organization operates on a different domain, then should be modified with the appropriate domain .

For example, here's how user would modify the domain in an API for the .eu domain:

API endpoint for the .com domain, as available on this page:

https://log360cloud.manageengine.com/api/v1/accounts

https://accounts.zoho.com/oauth/v2/auth

API endpoint after replacing the .com domain with .eu:

https://log360cloud.manageengine.eu/api/v1/accounts

https://accounts.zoho.eu/oauth/v2/auth

API Call Limit

API calls are limited to provide better quality of service and availability to all the users. The limit is 50 requests/minute, which applies to all API Endpoints.