Important notes:
Go to Kenjo > Settings > Recruiting Settings and make sure your Kenjo Career site is active and you have picked a subdomain.
This endpoint will provide you with a JSON with all the data of the active job openings in your system.
We recommend that you activate the option "Hide 'All job openings' link" in Kenjo, via Kenjo > Settings > Recruiting Settings. This will ensure the best possible experience for your candidates
Example of the GET endpoint to retrieve the data of your open positions:
{ [...] "activePositions": [ { "_id": "5b822fb092687f00148b2ddd", "jobTitle": "0100 - Back end developer", "customUrl": "back-end-developer-190522", "companyName": "Dunder Mifflin", "officeName": "NY Office", "departmentName": "Quality & Assurance", "applicationFormFields": [ { "_id": "5b997a61613eb600143fffff", "collectionName": "candidate", "fieldApiName": "email", "typeOfField": "field", "fieldCondition": "REQUIRED" } ] }, { "_id": "5b999a5f7bdcad00146bb82b", "jobTitle": "Marketing Manager", "customUrl": "5b997a5f7bdcad00146ggggg", "jobDescription": { "html": "<p>We're looking for a marketing manager!</p>" }, "companyName": "Vance Refrigeration", "officeName": "Scranton Office", "departmentName": "Marketing", "positionType": "Full-time", "applicationFormFields": [ { "_id": "5b997a61613eb60014hhhhh", "collectionName": "candidate", "fieldApiName": "firstName", "typeOfField": "field", "fieldCondition": "REQUIRED" }, { "_id": "5b997a61613eb600143aaaaa", "collectionName": "candidate", "fieldApiName": "lastName", "typeOfField": "field", "fieldCondition": "REQUIRED" }, { "_id": "5b997a61613eb60014bbbbbb", "collectionName": "candidate", "fieldApiName": "email", "typeOfField": "field", "fieldCondition": "REQUIRED" } ] } ]}
The second endpoint will be a POST endpoint, which will enable you to create a candidate assigned to one of the positions listed in the previous endpoint.
Important notes:
Please note that you cannot feed documents into Kenjo. This is why is essential that all your attachment fields in Kenjo are toggled as Disabled in the position configuration.
Other than documents, you can feed both position and candidate custom fields into Kenjo. To do so, make sure they are toggled as either Required or Optional in the position configuration.
Example of the POST endpoint to feed a candidate into one of your positions:
{ "positionId": "5b997a5f7bdcad00146fb82b", "candidate": { "firstName": "Hollywood", "lastName": "Fats", "email": "[email protected]" }}



