IDCS Rest API - Assign to Group when creating a user
Summary
Example of Groups property using the Users rest api endpointContent
I am creating IDCS users via the Rest API End Point, Users i.e.
{
"schemas":[
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"name":{
"familyName":"MY_USER"
},
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User":
{
"employeeNumber": "1111222333"
},
"userName":"'|| p_username ||'",
"urn:ietf:params:scim:schemas:oracle:idcs:extension:user:User":
{
"isFederatedUser": true
},
"emails":[
{
"value":"me@me.com",
"type":"work",
"primary":true
}
]
}
And this is all working just fine.
I am struggling trying to assign this user to one or more IDCS groups as I can't find an example of the JSON.
0