Hi Guys,
We are having OIM 11gR2 PS3 environment. We need to create the user using SCIM Api. Below is the SCIM API which is create the user in OIM successfully.
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
{
"userName": "test728",
"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:enterprise:2.0:User",
"urn:ietf:params:scim:schemas:extension:oracle:2.0:IDM:User"
],
"name":{
"familyName":"man61",
"givenName":"test",
"middleName":""
},
"emails":
[
{
"value": "Abcd.ui@gmail.com",
"type": "work"
}
],
"phoneNumbers": [
{
"value": "555-555-5555",
"type": "work"
},
{
"value": "555-555-4444",
"type": "mobile"
}
],
"userType":"EXT",
"password": "t1meMa$",
"urn:ietf:params:scim:schemas:extension:oracle:2.0:OIG:User":{
"EmployeeStatus":"New",
"startDate":"2012-06-25",
"endDate":"2019-06-25",
},
"title":"Business Systems Analyst",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User":{
"organization":"Xellerate Users"
}
}
Please help me on this.
Regards,
P