Hi Guys,
We are having OIM 11gR2 PS3 environment. We need to create the user using SCIM Api.
I want to know whether we can assign the role automatically while creating the user itself. Is that possible in OIM?.
I have followed below documentation but couldn't find anything related to this.
https://docs.oracle.com/cd/E52734_01/oim/OMDEV/scim.htm#OMDEV5569
{ "schemas": [
"urn:ietf:params:scim:schemas:extension:oracle:2.0:OIG:User",
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:oracle:2.0:IDM:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"
],
"userName": "scim_create_test1",
"name": {
"givenName": "FIRST_Custom_Test_NAME",
"familyName": "LAST_NAME"
},
"emails": [
{ "value": "EMAIL@email.com",
"type": "work"
}
],
"userType": "Customer Admin"
}