I am utilising an API from a 3rd party system HR system called Hibob (https://apidocs.hibob.com/reference/post_people-search). My aim is for this system to populate employee records in Infor LN.
I have the system configured in Postman successfully using the following;
POST = https://api.hibob.com/v1/people/search
Auth Type = Basic Auth - Username & Password
Headers - Key = Content-Type, Value = application/json
Body = JSON
{
"fields": [
"root.firstName",
"root.surname",
"root.email",
"work.employeeIdInCompany",
"work.startDate",
"internal.status",
"internal.currentActiveStatusStartDate",
"employee.lastDayOfWork"
],
"showInactive": true,
"limit": 1000,
"offset": 0,
"humanReadable": "REPLACE"
}
How do I configure this config in the Infor API Gateway. I have created a New API Suite but lost to find headers & body
Thanks
Jon