Listing Users
Function
This API is used to list users. A maximum of 50 results can be returned for each request.
URI
GET /{tenant_id}/scim/v2/Users
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| tenant_id | Yes | String | Globally unique ID of a tenant. |
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| Authorization | Yes | String | Bearer token. |
Response Parameters
Status code: 200
| Parameter | Type | Description |
|---|---|---|
| totalResults | Integer | Total results. |
| itemsPerPage | String | Number of elements on each page. |
| startIndex | String | Start index. |
| schemas | Array of strings | Summary. |
| Array of objects | List of user information. |
| Parameter | Type | Description |
|---|---|---|
| id | String | Globally unique ID of a user. |
| externalId | String | External ID. |
| Object | Metadata. | |
| schemas | Array of strings | Summary. |
| userName | String | Username, which uniquely identifies a user. |
| Object | User's name. | |
| displayName | String | Display name of a user. |
| active | Boolean | Whether a user is enabled. |
| Array of objects | Email addresses of a user. | |
| userType | String | User type. |
| nickName | String | Nickname of a user. Minimum length: 1 Maximum length: 1024 |
| title | String | User title. Minimum length: 1 Maximum length: 1024 |
| preferredLanguage | String | User's preferred language. Minimum length: 1 Maximum length: 1024 |
| locale | String | Geographical area or location of a user. Minimum length: 1 Maximum length: 1024 |
| timezone | String | User time zone. Minimum length: 1 Maximum length: 1024 |
| Array of objects | Address list of a user. Array length: 1-1 | |
| Array of objects | Phone number list of a user. Array length: 1-1 | |
| Object | User work information. |
| Parameter | Type | Description |
|---|---|---|
| resourceType | String | Resource type. |
| created | String | Resource creation time. |
| lastModified | String | Last resource update time. |
| Parameter | Type | Description |
|---|---|---|
| formatted | String | Formatted name to be displayed. |
| familyName | String | Family name of a user. |
| givenName | String | Given name of a user. |
| middleName | String | Middle name of a user. |
| honorificPrefix | String | Prefix of a user's name. |
| honorificSuffix | String | Suffix of a user's name. |
| Parameter | Type | Description |
|---|---|---|
| value | String | Email address. |
| type | String | Email address type. |
| primary | Boolean | Whether the value is the user's primary email address. |
| Parameter | Type | Description |
|---|---|---|
| formatted | String | Formatted address to be displayed. Minimum length: 1 Maximum length: 1024 |
| streetAddress | String | Street. Minimum length: 1 Maximum length: 1024 |
| locality | String | Location. Minimum length: 1 Maximum length: 1024 |
| region | String | Region. Minimum length: 1 Maximum length: 1024 |
| postalCode | String | Postal code. Minimum length: 1 Maximum length: 1024 |
| country | String | Country or region. Minimum length: 1 Maximum length: 1024 |
| type | String | Address type. Minimum length: 1 Maximum length: 1024 |
| primary | Boolean | Whether the address is the user's primary address. |
| Parameter | Type | Description |
|---|---|---|
| value | String | Phone number. Minimum length: 1 Maximum length: 1024 |
| type | String | Phone number type. Minimum length: 1 Maximum length: 1024 |
| primary | Boolean | Whether the value is the user's primary phone number. |
| Parameter | Type | Description |
|---|---|---|
| costCenter | String | Cost Center. Minimum length: 1 Maximum length: 1024 |
| department | String | Department. Minimum length: 1 Maximum length: 1024 |
| division | String | Division. Minimum length: 1 Maximum length: 1024 |
| employeeNumber | String | Employee ID. Minimum length: 1 Maximum length: 1024 |
| Object | Manager. | |
| organization | String | Organization. Minimum length: 1 Maximum length: 1024 |
| Parameter | Type | Description |
|---|---|---|
| value | String | Manager. Minimum length: 1 Maximum length: 1024 |
Status code: 400
| Parameter | Type | Description |
|---|---|---|
| schema | String | Summary. |
| schemas | Array of strings | Summary list. |
| detail | String | Exception details. |
| status | Integer | Status code. |
| timeStamp | String | Timestamp. |
Status code: 403
| Parameter | Type | Description |
|---|---|---|
| schema | String | Summary. |
| schemas | Array of strings | Summary list. |
| detail | String | Exception details. |
| status | Integer | Status code. |
| timeStamp | String | Timestamp. |
Status code: 404
| Parameter | Type | Description |
|---|---|---|
| schema | String | Summary. |
| schemas | Array of strings | Summary list. |
| detail | String | Exception details. |
| status | Integer | Status code. |
| timeStamp | String | Timestamp. |
Status code: 409
| Parameter | Type | Description |
|---|---|---|
| schema | String | Summary. |
| schemas | Array of strings | Summary list. |
| detail | String | Exception details. |
| status | Integer | Status code. |
| timeStamp | String | Timestamp. |
Status code: 500
| Parameter | Type | Description |
|---|---|---|
| schema | String | Summary. |
| schemas | Array of strings | Summary list. |
| detail | String | Exception details. |
| status | Integer | Status code. |
| timeStamp | String | Timestamp. |
Example Request
Listing users
GET https://{hostname}/{tenant_id}/scim/v2/Users Example Response
Status code: 200
Successful
{
"totalResults" : 1,
"itemsPerPage" : 10,
"startIndex" : "649040aaaaaaaaaaaa3e3050",
"schemas" : [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ],
"Resources" : [ {
"id" : "ac6aa714-daa7-1aaa-aaa2-6715aaaa4dd9",
"externalId" : "123456",
"meta" : {
"resourceType" : "User",
"created" : "2023-04-08T14:53:43Z",
"lastModified" : "2023-04-08T14:53:43Z"
},
"schemas" : [ "urn:ietf:params:scim:schemas:core:2.0:User" ],
"userName" : "xxx",
"name" : {
"formatted" : "xxx",
"familyName" : "xxx",
"givenName" : "xxx",
"middleName" : "xxx",
"honorificPrefix" : "xxx",
"honorificSuffix" : "xxx"
},
"displayName" : "xxx",
"active" : true,
"emails" : [ {
"value" : "xxx",
"type" : "work",
"primary" : true
} ],
"userType" : "xxx"
} ]
} Status Codes
For details, see Status Codes.
Error Codes
For details, see Error Codes.