Posts

Showing posts from September, 2020

Create/Update User and assign roles in oracle Fusion using the REST Web Services Part 2

Image
Create Update User and assign roles in oracle Fusion using the REST Web Services Part 2 https://oracleappsjet.blogspot.com/2020/09/programmatically-createupdate-user-assign-roles-oracle-fusion-REST-web-Service-Part1.html In Continuation of the part1 the below two points will be covered in this post. 3)  PATCH method to update and assign the Roles to the user 4)  PATCH method to update the user information   3)  P ATCH Operation for Assigning the Roles to the User REST Web Services /hcmCoreSetupApi/scim/Roles/ {id} {id} is the ROLE_GUID Get the Role GUID using the below Query select * from per_roles_dn_vl where role_name = 'Application Implementation Consultant' ROLE_GUID: E3A40F5AB08290D7E040F00AC6466664 Get the User GUID using the below Query select * from per_users where username = 'ABDUL.KALAM' USER_GUID:  AFF234DC29119F6FE050DD0AFA573C12 “Value” for Payload will be the USER_GUID https://<host>:<port>/hcmCoreSetupApi/scim/Roles/E3A40F5AB08290D7...

Programmatically Create/Update User and assign roles in oracle Fusion using the REST Web Services Part 1

Image
Programmatically Create/Update User and assign roles in oracle Fusion using the REST Web Services  Part 1 Below are the steps that will be covered in this Post to Manage the User information using  REST Web Service using the Postman Tool 1) POST method to create a user along with Password and email using below REST Web service      / hcmRestApi/scim/Users 2) GET method to query the user  using below REST Web service      /hcmRestApi/scim/Users/{id} 3) PATCH method to update and assign the Roles to the user using below REST Web service      /hcmCoreSetupApi/scim/Roles/ {id}  4) PATCH method to update the user information  using below REST Web service      /hcmRestApi/scim/Users/{id}        Three Operations  will be Performed in Postman Tool 1) POST Operation used for CREATION 2)  GET Operation used for QUERY 3)  PATCH Operation used for UPDATE   REST Web ...