# Retrieves detailed summary for SoM Computers Retrieves the SoM computer summary based on agent installation status and the last agent contact time. ## Endpoint `GET /api/1.4/som/summary` ### Request URL `https://{server-hostname}:8383/api/1.4/som/summary` ### Scope `Common.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/som/summary \ --header 'Authorization: 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" } ``` ## API 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.