GET {tenantId}/Scim/v2/Users
Gets SCIM user entities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantId |
ID of the FortesMilestones tenant |
string |
Required |
| startIndex |
The 1-based index of the first user to return in the collection. |
integer |
Default value is 1 |
| count |
Number of users to return |
integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
System.Net.Http.HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | System.Version |
None. |
|
| Content | System.Net.Http.HttpContent |
None. |
|
| StatusCode | System.Net.HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | System.Net.Http.HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |
Response Formats
application/json, text/json, application/scim+json
Sample:
[
{
"id": "123",
"userName": "jsmith",
"displayName": "John Smith",
"name": {
"formatted": "John Smith",
"familyName": "Smith",
"givenName": "John"
},
"title": null,
"active": true,
"emails": [
{
"value": "jsmith@example.com",
"type": "work",
"primary": true
}
],
"roles": [
{
"value": "Manager",
"type": "jobRole"
}
],
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"meta": {
"resourceType": "User",
"created": "2025-11-03T06:03:31.5275215Z",
"lastModified": "2025-11-03T06:03:31.5275215Z",
"location": "/scim/v2/Users/123"
}
},
{
"id": "456",
"userName": "jdoe",
"displayName": "John Doe",
"name": {
"formatted": "John Doe",
"familyName": "Doe",
"givenName": "John"
},
"title": null,
"active": true,
"emails": [
{
"value": "jdoe@example.com",
"type": "work",
"primary": true
}
],
"roles": [
{
"value": "Manager",
"type": "jobRole"
}
],
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"meta": {
"resourceType": "User",
"created": "2025-11-03T06:03:31.5275215Z",
"lastModified": "2025-11-03T06:03:31.5275215Z",
"location": "/scim/v2/Users/456"
}
}
]
application/xml, text/xml
Sample:
<ArrayOfScimUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.Scim.Models">
<ScimUser>
<Active>true</Active>
<DisplayName>John Smith</DisplayName>
<Emails>
<ScimEmail>
<Primary>true</Primary>
<Type>work</Type>
<Value>jsmith@example.com</Value>
</ScimEmail>
</Emails>
<Id>123</Id>
<Meta>
<Created>2025-11-03T06:03:31.5275215Z</Created>
<LastModified>2025-11-03T06:03:31.5275215Z</LastModified>
<Location>/scim/v2/Users/123</Location>
<ResourceType>User</ResourceType>
</Meta>
<Name>
<FamilyName>Smith</FamilyName>
<Formatted>John Smith</Formatted>
<GivenName>John</GivenName>
</Name>
<Roles>
<ScimRole>
<Type>jobRole</Type>
<Value>Manager</Value>
</ScimRole>
</Roles>
<Schemas xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>urn:ietf:params:scim:schemas:core:2.0:User</d3p1:string>
</Schemas>
<Title i:nil="true" />
<UserName>jsmith</UserName>
</ScimUser>
<ScimUser>
<Active>true</Active>
<DisplayName>John Doe</DisplayName>
<Emails>
<ScimEmail>
<Primary>true</Primary>
<Type>work</Type>
<Value>jdoe@example.com</Value>
</ScimEmail>
</Emails>
<Id>456</Id>
<Meta>
<Created>2025-11-03T06:03:31.5275215Z</Created>
<LastModified>2025-11-03T06:03:31.5275215Z</LastModified>
<Location>/scim/v2/Users/456</Location>
<ResourceType>User</ResourceType>
</Meta>
<Name>
<FamilyName>Doe</FamilyName>
<Formatted>John Doe</Formatted>
<GivenName>John</GivenName>
</Name>
<Roles>
<ScimRole>
<Type>jobRole</Type>
<Value>Manager</Value>
</ScimRole>
</Roles>
<Schemas xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>urn:ietf:params:scim:schemas:core:2.0:User</d3p1:string>
</Schemas>
<Title i:nil="true" />
<UserName>jdoe</UserName>
</ScimUser>
</ArrayOfScimUser>