# Retrieves details of domains, custom groups, and branch offices managed by the Endpoint Central server The Server Properties API provides information about the configuration of the Endpoint Central server. It returns the list of branch offices, domains, and custom groups available in the server environment. This information can be used to identify organizational structures, group policies, and domain settings. ## Endpoints `GET /api/1.4/desktop/serverproperties` ## Request URL `https://{server-hostname}:8383/api/1.4/desktop/serverproperties` ## Scope `Common.READ` ## Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ## Sample Request ```curl curl --request GET \ --url https://appdomain/api/1.4/desktop/serverproperties \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json - JSON object - **message_response** — JSON object - Wrapper object containing the actual response data. - **status** — string - Response status success/failure. - **message_version** — string - Version of the response message format. - **message_type** — string - Identifies the type of message. ## Possible Response Codes - **200** — HTTP code ## Sample Response: HTTP 200 ```json { "message_response": { "serverproperties": { "branch_offices": [ "Direct Comm", "Intern Ds Remote", "Local Office" ], "domains": [ "ZOHOCORP", "DESKTOPCENTRAL", "WORKGROUP", "macosgroup" ], "custom_groups": [ "All Computers Group", "All Users Group", "Default_iOS_Corporate", "Default_iOS_Personal", "Default_Android_Corporate", "Default_Android_Personal", "Default_Windows_Corporate", "Default_Windows_Personal", "Inactive_Users_ZOHOCORP", "Inactive_Computers_ZOHOCORP", "test", "sathish" ] } }, "message_type": "discover", "message_version": "1.0", "status": "success" } ``` ## Rate Limits ![](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **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.