PATCH {tenantId}/Scim/v2/Users/{id}
Patches SCIM user entity
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantId |
ID of the FortesMilestones tenant |
string |
Required |
| id |
User ID |
string |
Required |
Body Parameters
QicsUnity.Api.Areas.Scim.Models.ScimPatchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| schemas |
Gets or sets a list of schemas |
Collection of string |
None. |
| Operations |
Gets or sets a list of operations |
Collection of QicsUnity.Api.Areas.Scim.Models.ScimPatchOperation |
None. |
Request Formats
application/json, text/json, application/scim+json
Sample:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"value": "jdoe@example.com",
"path": "username",
"op": "replace"
},
{
"value": "false",
"path": "active",
"op": "replace"
}
]
}
application/xml, text/xml
Sample:
<ScimPatchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.Scim.Models">
<Operations>
<ScimPatchOperation>
<Op>replace</Op>
<Path>username</Path>
<Value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string">jdoe@example.com</Value>
</ScimPatchOperation>
<ScimPatchOperation>
<Op>replace</Op>
<Path>active</Path>
<Value xmlns:d4p1="http://www.w3.org/2001/XMLSchema" i:type="d4p1:string">false</Value>
</ScimPatchOperation>
</Operations>
<Schemas xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>urn:ietf:params:scim:api:messages:2.0:PatchOp</d2p1:string>
</Schemas>
</ScimPatchRequest>
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. |