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.
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 /account
API’s JSON response.
OAuth Scope : logs360cloud.accounts.READ
$ curl -X GET 'https://log360cloud.manageengine.com/api/v1/accounts' \
-H 'Authorization: Zoho-oauthtoken 6e80xxxxxxxxxxxxxxxxxxxxxxxx8a80'
{
"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 |
The APIs listed in this document are hosted on the .com domain. If your organization operates on a different domain, then ensure to replace .com with the appropriate domain for API endpoints before using them.
Note: To know the domain you're accessing Log360 Cloud from, visit the Log360 Cloud web app and check its URL. If the URL contains log360cloud.manageengine.com, then you're accessing it from the .com domain. If the URL contains log360cloud.manageengine.in, you're accessing it from the .in domain. Similarly, you could be accessing Log360 Cloud from the .eu or .com.au domain.
For example, here's how you would modify the domain in an API endpoint for the .eu domain:
API endpoint for the .com domain, as available on this page:
https://log360cloud.manageengine.com/api/v1/accounts
API endpoint after replacing the .com domain with .eu:
https://log360cloud.manageengine.eu/api/v1/accounts
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.