SCIM API usage to bulk update roles for multiple users
Summary
Trying to update the SCIM API to bulk update roles but it doesn't workContent
Using the below URI in endpoint
https://<pod-name>.fa.<Datacenter>.oraclecloud.com
Resource:
/hcmRestApi/scim/Roles
Using PATCH methond and using the below JSON but it doesn't work
{
"Operations":[
{
"method":"PATCH",
"path":"/Roles/ENTER_ROLE_GUID_HERE",
"bulkId":"clientBulkId1",
"data": {
"members": [
{
"value": "ENTER_USER_GUID_HERE",
"operation": "REMOVE"
}]
}
},
{
"method":"PATCH",
"path":"/Roles/ENTER_ROLE_GUID_HERE",
"bulkId":"clientBulkId1",
"data": {
"members": [
{
"value": "ENTER_USER_GUID_HERE",
"operation": "ADD"
}]
}
}
]
}
Getting the below error
html>
<head>
<meta content="HTML Tidy for Java (vers. 26 Sep 2004), see www.w3.org" name="generator"/>