We are pulling from our Workday API and get about 4000 results in a single Object with numerous keys and values in each Object. We need to be able to pull two key value pairs from each result and update our Okta schema based on user data. The issue I’m running into is that the object response is a large array:
{
"Report_Entry":
[
{
"Employee_Type": "Employee",
"Field1": "foo",
"Field2": "bar"
},
{
"Employee_Type": "Employee",
"Field1": "foo",
"Field2" : "bar"
}
]
}
I’m able to get the two fields when testing with a single object, but getting the key value pairs from multiple objects seems to be more difficult than I thought. Any ideas or tips?