RChilli provides web API to parse Resumes or CVs which converts resume of any format to JSON. It analyses a resume or cv created in any format, be it doc, docx, Html, pdf, RTF, and extracts into a machine-readable output such as JSON format through API. We only have JSON output using the REST API, which is easier to integrate and process. There are two types of methods for accessing RChilli Resume Parser API:
RChilli resume parser methods:
- Parsing by Resume Public URL
- Parsing by Resume Binary Data
Parsing by Resume Public URL- RChilli web API allows you to parse resume/CV using resume public URL.
Method name in API: parseResume
Method Type: POST
Parameters:
Resume URL (String) Resume public URL with filename (e.g. http://www.resumeinfo.com/raj_php.doc)
- User Key (String) Valid user key as provided by RChilli
- Version (String) 7.0.0
- Sub User Id (String) As per the contract
JSON Request Format:
{
"url": "Resume public url ",
"userkey": "Your User key",
"version": "Api Version",
"subuserid": "Sub User Id"
}
- Parsing by Resume Binary Data: - RChilli web API allows you to parse resume using binary data in Base64 format.
Method name in API: - parseResumeBinary
Method type: - POST
Parameters: -
- File Data (String) Resume binary data in base64
- File Name (String) Resume with name with extension (e.g. resumeSample.doc)
- User Key(String) Valid User Key as provided by RChilli
- Version (String) 7.0.0
- Sub User Id (String) As per contract
JSON Request Format:
{
"filedata": " File data in base64 ",
"filename": "File name with extension",
"userkey": "Your User key",
"version": "version",
"subuserid": "subuserid"
}
You can check or download the same detail in the RChilli Rest API integration document and sample code shared on your RChilli MyAccount. If you still have any questions, you can always contact RChilli Support via creating a ticket at RChilli Helpdesk or simply by sending an email at support@rchilli.com.
Comments
0 comments
Please sign in to leave a comment.