# Retrieve detailed information about a specific managed user Get details of a managed user ## Endpoints **GET** `/api/v1/mdm/users/{user_id}` ## Request ### Request URL `https://{server-hostname}:8383/api/v1/mdm/users/{user_id}` ### Scope `MDMUser.READ` ### Header `Authorization: d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** `string` — Mandatory - `application/json` #### Path Parameters - **user_id** `string` — Mandatory - Unique identifier of the user. Obtain from the [Get Users](https://www.manageengine.com/products/desktop-central/help/api/onpremise/users-get-multiple-users.html) response ### Sample Request ```curl curl --request GET \ --url https://appdomain/api/v1/mdm/users/{user_id} \ --header 'Accept: application/json' \ --header 'Authorization: d92d4xxxxxxxxxxxxx15f52' ``` ## Response ### Response Parameters #### HTTP Code 200 Response Body — `application/json` - `JSON Object` - **user_email** `string` - Email address of the user - **user_id** `string` - Unique identifier of the user - **user_name** `string` - Name of the managed user - **phone_number** `string` - Phone number of the managed user - **ad_domain** `string` - Domain of the user - **device_count** `integer` - Number of devices currently assigned to this user ### Possible Response Codes - **200** — HTTP code ### Sample Response: HTTP 200 Full details for a specific managed user ```json { "user_email": "user_email@zylker.com", "user_id": "9007199254740999", "user_name": "admin", "ad_domain": "mdm", "phone_number": "+1-555-0****99", "device_count": 0 } ``` ![](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.