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

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...