I am trying to make a patch request using the SCIM API. In this instance I'm trying to remove the current users "Title", but nothing is happening. I'm very unsure on how to use this api. I have a feeling there is something wrong in how I'm using the schema and/or path.
List<string> schemaList = new List<string>();
string patchOpSchema = "urn:ietf:params:scim:api:messages:2.0:PatchOp";
schemaList.Add(patchOpSchema);
ScimV2PatchOperation patchOperation = new ScimV2PatchOperation();
patchOperation.Op = ScimV2PatchOperation.OpEnum.Remove;
patchOperation.Path = "Title";
List<ScimV2PatchOperation> patchOperationList = new List<ScimV2PatchOperation>();
patchOperationList.Add(patchOperation);
ScimV2PatchRequest request = new ScimV2PatchRequest(Schemas: schemaList, patchOperationList);
scimApi.PatchScimV2User(ID, body: request);
Also, I don't understand how to use the JsonNode type if I want to replace or create a new attribute. I suspect this is where I would put the value of the new attribute, but I cant find any option to input a string as the new value
The value attribute is a pretty complex and swagger and API documentation are not sufficient for describing all of the possibilities. The best source for understanding the SCIM patch is the RFC. https://tools.ietf.org/html/rfc7644#section-3.5.2.
Here is an example of patch of user:
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations":[
{
"op":"replace",
"path": "phoneNumbers[type eq "work"].value",
"value": "+13177023406"
},
{
"op":"add",
"path":"externalId",
"value": "--campaignUser0@example.com"
}
]
}
Here is an example of a patch of Group membership:
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
"Operations":[
{
"op":"add",
"path": "members",
"value": [ { "value": "d2ac184e-4733-41e9-8a45-3459e1efd8c7" } ]
}
]
}
So a value could be a an array, or a value. It's type is dependent on the target type.