JD REST API Integration

JD parser API will act as a parsing service via Rest API call, extract the parameters from a job description and return all the job information from the job feeds as JSON in a structured format.

This JD features helps users on following:
  • Users can easily upload a job description and get the output in text-based data format.
  • Recruiters can shortlist candidates profile with the help of extracted JD data.
  • Users can do Bulk JD parsing, refer JD Bulk Upload.
  • User can integrate the JD rest API with email inbox, refer JD Email Integration.

How to Integrate JD Rest API

JD Parser rest API can be easily integrated using below parameters, for more details, refer JD Parser Endpoints, Method and Parameters.
  1. Parsing by JD Text: When the JD text is parsed in base64 format, the parameters must be given as follows:

    Parameters:-

    • Base64Text (String): JD text in base64 format
    • UserKey (String): Valid UserKey as provided by RChilli
    • Version (String): 3.1
    • SubUserId (String): As per contract
    See the below request in the JSON format:
    {
    	"base64text":"{{base64data}}",
    	"userkey":"{{userkey}}",
    	"version":"3.1",
    	"subuserid":"{{subuserid}}"
    }
  2. Parsing by JD Binary Data: When the JD is parsed using binary data in base64 format, the parameters must be given as follows:

    Parameters:-

    • FileData (String): JD file binary data in base64
    • FileName (String): JD filename with extension (eg. JdSoftwaredeveloper.doc)
    • UserKey(String): Valid UserKey as provided by RChilli
    • Version (String): 3.1
    • SubUserId (String): As per contract
    See the below request in the JSON format:
    {
    	"filedata":"{{base64data}}",
    	"filename":"{{filename}}",
    	"userkey":"{{userkey}}",
    	"version":"3.1",
    	"subuserid":"{{subuserid}}"
    }