Get Started: AI Resources for Oracle Cloud HCM – Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Progress with Redwood: Redwood Resources for Oracle Cloud HCM - Go Here
Rest API To get Employee User Person Type and Employee salary.
Summary:
We want to fetch Employee salary and Person type using Java script, which will be used in Oracle Intelligent advisor interviews.
Content (please ensure you mask any confidential information):
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):
Currently we are using Public worker API.
function setemployeedetails (personId,interview,username)
{
//This function would get the employee details
var JWT = interview.getValue("JWT")
var myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer "+JWT);
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
0