Skip to Main Content

Security Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Assign role to user using SCIM Api while doing create user functionality

3404689Mar 7 2017 — edited Mar 8 2017

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

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 5 2017
Added on Mar 7 2017
3 comments
455 views