Retrieve detailed information about a specific managed user

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Get details of a managed user

Endpoints

Request URL

https://{server-hostname}:8383/api/v1/mdm/users/{user_id}

Scope

MDMUser.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Path Parameters

user_idstringMandatory

Unique identifier of the user. Obtain from the Get Users response

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/api/v1/mdm/users/{user_id} \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
user_emailstring

Email address of the user

user_idstring

Unique identifier of the user

user_namestring

Name of the managed user

phone_numberstring

Phone number of the managed user

ad_domainstring

Domain of the user

device_countinteger

Number of devices currently assigned to this user

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Full details for a specific managed user

Copied!
  {
    "user_email": "user_email@zylker.com",
    "user_id": "9007199254740999",
    "user_name": "admin",
    "ad_domain": "mdm",
    "phone_number": "+1-555-0****99",
    "device_count": 0
  }
                
Show full

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.