SCIM
Get User
Get a user by ID.
GET
/
scim
/
v2
/
Users
/
{user_id}
Copy
curl --request GET \
--url https://api.mileiq.com/scim/v2/Users/{user_id}
Copy
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "<string>",
"userName": "<string>",
"name": {
"givenName": "<string>",
"familyName": "<string>",
"formatted": "<string>"
},
"emails": [
{
"value": "<string>",
"type": "<string>",
"primary": true
}
],
"active": true,
"meta": {
"resourceType": "<string>",
"created": "2023-11-07T05:31:56Z",
"lastModified": "2023-11-07T05:31:56Z",
"location": "<string>"
},
"displayName": "<string>"
}
Headers
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
Copy
curl --request GET \
--url https://api.mileiq.com/scim/v2/Users/{user_id}
Copy
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"id": "<string>",
"userName": "<string>",
"name": {
"givenName": "<string>",
"familyName": "<string>",
"formatted": "<string>"
},
"emails": [
{
"value": "<string>",
"type": "<string>",
"primary": true
}
],
"active": true,
"meta": {
"resourceType": "<string>",
"created": "2023-11-07T05:31:56Z",
"lastModified": "2023-11-07T05:31:56Z",
"location": "<string>"
},
"displayName": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.