Get SCIM users
get/scim/v2/Users
Returns a collection of SCIM users.
1{2 "schemas": [3 "urn:ietf:params:scim:api:messages:2.0:ListResponse"4 ],5 "startIndex": 1,6 "itemsPerPage": 1,7 "totalResults": 1,8 "Resources": [9 {10 "id": "2bca4a63-0892-484a-a9ef-aff7b7f0c795",11 "userName": "scim-example3@sas.com",12 "title": "Test title",13 "active": true,14 "externalId": "scim-example3@sas.com",15 "displayName": "scim example 3",16 "emails": [17 {18 "value": "testuser3@sas.com",19 "type": "work"20 }21 ],22 "schemas": [23 "urn:ietf:params:scim:schemas:core:2.0:User"24 ],25 "meta": {26 "resourceType": "User",27 "created": "2025-10-16T13:46:46.111Z",28 "lastModified": "2025-10-16T13:46:46.111Z"29 }30 }31 ]32}
| Name | Type | Required | Description |
|---|---|---|---|
attributes | string | false | A comma-separated list of attribute names to return in the response. |
count | integer<int32> | false | The maximum number of users to return in this page of results. The actual number of returned users can be less if the collection has been exhausted. Defaults to >= 0 |
excludedAttributes | string | false | A comma-separated list of attribute names to exclude from the response. |
filter | string<filter-criteria> | false | Filter criteria for returned users. See SCIM Filtering for syntax details. |
startIndex | integer<int32> | false | The starting index of the first user in a page. Defaults to >= 1 |
| Status | Meaning | Description | ||
|---|---|---|---|---|
| 200 | OK | The request succeeded. | Schema | |
| 400 | Bad Request | An Invalid filter or combination of request parameters was provided. | ||
| 401 | Unauthorized | Authentication is required. | ||
| 403 | Forbidden | The authenticated user does not have sufficient privileges. | Schema |