# Retrieve detailed information about a specific user Retrieves the complete profile of a user identified by the login ID, including assigned role, email, phone number, and computer scope settings. ## Endpoints `GET /dcapi/users-cloud/{userId}` ## Request URL `https://`[*{serverurl}*](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html)`/dcapi/users-cloud/{userId}` ## Scope `DesktopCentralCloud.Admin.READ` ## Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ## Request Parameters ### Path Parameters **userId** `string` **Mandatory** Unique user identifier. To get user id click here. [Get User Id](https://www.manageengine.com/products/desktop-central/help/api/cloud/users-public-get-user-by-id.html?UsersPublic_getUserMeta) ## Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/users-cloud/{userId} \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP code 200 #### Response Body — application/json `JSON Object` - **phoneNumber** `string` - Phone number associated with the user account. - **roleID** `string` - Unique identifier of the role assigned to the user. - **roleName** `string` - Name of the role assigned to the user. - **mailID** `string` - Email address of the user. - **userName** `string` - Username of the user. ## Sample Response: HTTP 200 ```json { "computerScopeType": 0, "phoneNumber": "1231231231", "roleID": "9502000000014452", "isSDPUser": false, "roleName": "Administrator", "mailID": "john.smith@example.com", "userName": "john.smith" } ``` ## Possible Response Codes - **200** `HTTP code` ![ ](https://www.zohowebstatic.com/sites/zweb/images/people/ico-help.png) **Duration:** 1 minute | **Threshold:** 30 | **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.