GET {tenantId}/Scim/v2/Users/{id}

Gets SCIM user entity by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tenantId

ID of the FortesMilestones tenant

string

Required

id

User ID

string

Required

Body Parameters

None.

Response Information

Resource Description

SCIM user entity in standard SCIM JSON format.

System.Net.Http.HttpResponseMessage
NameDescriptionTypeAdditional 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:22.5605922Z",
    "lastModified": "2025-11-03T06:03:22.5605922Z",
    "location": "/scim/v2/Users/123"
  }
}

application/xml, text/xml

Sample:
<ScimUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.Scim.Models">
  <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:22.5605922Z</Created>
    <LastModified>2025-11-03T06:03:22.5605922Z</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:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>urn:ietf:params:scim:schemas:core:2.0:User</d2p1:string>
  </Schemas>
  <Title i:nil="true" />
  <UserName>jsmith</UserName>
</ScimUser>