Get a SCIM user

get/scim/v2/Users/{userId}

Returns information about a single SCIM user based on its unique ID.

Request Samples

1

Response Samples

1{
2 "id": "2bca4a63-0892-484a-a9ef-aff7b7f0c795",
3 "userName": "scim-example3@sas.com",
4 "title": "Test title",
5 "active": true,
6 "externalId": "scim-example3@sas.com",
7 "displayName": "scim example 3",
8 "emails": [
9 {
10 "value": "testuser3@sas.com",
11 "type": "work"
12 }
13 ],
14 "schemas": [
15 "urn:ietf:params:scim:schemas:core:2.0:User"
16 ],
17 "meta": {
18 "resourceType": "User",
19 "created": "2025-10-16T13:46:46.111Z",
20 "lastModified": "2025-10-16T13:46:46.111Z"
21 }
22}

Path Parameters

NameTypeRequiredDescription
userId
string<object-id>
true

The unique identifier for the user resource (SCIM ID).

Query Parameters

NameTypeRequiredDescription
attributes
string
false

A comma-separated list of attribute names to return in the response.

excludedAttributes
string
false

A comma-separated list of attribute names to exclude from the response.

Responses

StatusMeaningDescription
200OK

The request succeeded.

Schema
401Unauthorized

Authentication is required.

403Forbidden

The authenticated user does not have sufficient privileges.

Schema
404Not Found

The user could not be found.