get https://{server}{path}/Users/
Get a specific user on the account.
Responses
401Unauthorized. Occurs if bearer token is invalid.
404Not Found. Occurs if the user was not found.
Get a specific user on the account.
401Unauthorized. Occurs if bearer token is invalid.
404Not Found. Occurs if the user was not found.
xxxxxxxxxx
curl --request GET \
--url https://users.lucid.app/scim/v2/Users/id \
--header 'accept: application/json'
xxxxxxxxxx
33}
{
"id": "lucid-1234",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"
],
"userName": "john-doe@example.com",
"name": {
"formatted": "John Doe",
"givenName": "John",
"familyName": "Doe"
},
"displayName": "john-doe@example.com",
"emails": [
{
"value": "john-doe@example.com",
"primary": true
}
],
"active": false,
"meta": {},
"roles": [
{
"value": "Document Admin"
}