# Retrieves detailed summary for SoM Computers Retrieves the SoM computer summary based on agent installation status and the last agent contact time. ## Endpoints `GET /api/1.4/som/summary` ## Request URL `https://{serverurl}/api/1.4/som/summary` [{serverurl}](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html) ## Scope `DesktopCentralCloud.Common.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Query Parameters - **page** `string` *(Optional)*: Specifies the page number to retrieve. Default is 1 - **pagelimit** `string` *(Optional)*: Specifies the maximum number of items to return per page. The default value is 25. A maximum of 1000 records can be retrieved in a single request ## Sample Request ### Curl ```curl curl --request GET \ --url https://appdomains/api/1.4/som/summary \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP Code 200 Response Body: `application/json` - `JSON Object` - **message_type** `string`: Name of the module - **message_response** `JSON Object`: Response message containing summary details - **message_version** `string`: Version of the Api - **status** `string`: Status of the request ## Possible Response Codes - **200** `HTTP code`: Request processed successfully ## Sample Response: HTTP 200 ```json { "message_type": "summary", "message_response": { "summary": { "last_contact_time_summary": { "equal_3_day": 2, "8_day_to_15_day": 0, "16_day_to_30_day": 0, "greater_30_day": 0, "4_day_to_7_day": 1 }, "installation_status_summary": { "uninstallation_failed": 1, "installed": 1, "total": 3, "installation_failed": 0, "yet_to_install": 1, "uninstalled": 0 }, "live_status_summary": { "down": 0, "live": 3, "unknown": 0 } } }, "message_version": "1.4", "status": "success" } ``` ## Rate Limit **Duration:** 1 minute | **Threshold:** 120 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.