200 |
OK is returned to indicate that the resume was processed successfully.
The response contains the following fields:
docType |
Type of the document: BankStatement, TravelTicket, Passport, BusinessCard, EmployeeIDCard, StudentIDCard, DrivingLicense, BirthCertificate, DeliverySheet, Resume or your customised definition of the document type |
general |
Summarizes general information about the document, which includes an array of key-value pairs.
For a resume, the keys can be:
FullName, Email, Phone, Address, Street, City, State, Zip, Country, LinkedIn, GitHub, Url, Objective, Summary, Hobbies, ProgrammingLanguages
|
lists |
Contains an array of the expected extractions. Each list is an array of key-value pairs.
For a resume, the list types contains:
EducationList (with keys: StartDate, EndDate, DegreeName, InstitutionName, City, State, Country, Description, GPA, Majors, Minors, Honors),
WorkExperienceList (with keys: StartDate, EndDate, City, State, Country, JobTitle, Employer, Description, Achievements, Responsibilities, SkillsTools),
VolunteerExperienceList (with keys: StartDate, EndDate, City, State, Country, JobTitle, Employer, Description, Achievements),
PublicationList (with keys: Date, Title, Authors, Journal),
CertificationList (with keys: Date, Title, Institution),
HardSkillList (with keys: Skill, SkillLevel),
SoftSkillList (with keys: Skill, SkillLevel),
LanguageList (with keys: Language, LanguageLevel)
|
processingInfo |
Here contains the processing information of the document. It includes a list of key value pairs. The keys are Language, Version, FileHash, Duration, NumberOfPages, and DocType. |
An example result from a resume can look like this:
{
"docType": "Resume",
"general": {
"FullName": "Melanie Robinson",
"Email": "MELANIE.ROBINSON@MAIL.COM",
"Phone": "+1 (970) 333-3833",
"Address": "",
"Street": "344 ELM STREET",
"City": "MADISON",
"State": "SD",
"Zip": "57042",
"Country": "",
"LinkedIn": "",
"GitHub": "",
"Url": "",
"Objective": "",
"Summary": "Qualified Customer Service
Representative with over 4 years in
fast-paced customer service and call
center environments. As a customer
service representative I am
personable good at building loyal
relationships, solving problems, and
Increasing Sales. I also excel in
listening to customer needs,
articulating product benefits and
creating solutions that provide value
to the customer.",
"Hobbies": "",
"ProgrammingLanguages": ""
},
"lists": {
"EducationList": [
{
"StartDate": null,
"Description": null,
"InstitutionName": "Marketing Oregon State University",
"Honors": null,
"State": null,
"Majors": null,
"DegreeName": "Bachelor of Arts",
"Country": null,
"GPA": null,
"City": null,
"EndDate": "2014",
"Minors": null
}
],
"HardSkillList": [
{
"Skill": "International sales support",
"SkillLevel": null
},
{
"Skill": "Strategic sales knowledge",
"SkillLevel": null
},
{
"Skill": "Exceptional communication skills",
"SkillLevel": null
},
{
"Skill": "Stock records management",
"SkillLevel": null
},
{
"Skill": "Quality assurance and control",
"SkillLevel": null
}
],
"WorkExperienceList": [
{
"StartDate": "2017-04",
"Description": null,
"SkillsTools": null,
"State": null,
"Employer": "BATS Global Markets Inc.",
"Achievements": null,
"Responsibilities": [
"Contact customer to follow up on purchases, suggest
new merchandise and inform on promotions and
upcoming events.",
"Promote business as superior provider committed to
efficiency and accuracy when engaging with
customers.",
"Answer product questions with up-to-date
knowledge of sales and store promotions.",
"Provide timely and effective replacement of
damaged or missing products."
],
"Country": null,
"City": "Chicago",
"EndDate": "2018-09",
"JobTitle": "Customer Service Representative"
},
{
"StartDate": "2015-04",
"Description": null,
"SkillsTools": null,
"State": null,
"Employer": "Foodspotting Inc.",
"Achievements": null,
"Responsibilities": [
"Assisted customers with food selection, inquiries and
order customization requests.",
"Answered average of 100 calls per day, addressing
customer inquiries, solving problems and providing
new product information.",
"Recommended, selected and helped locate and
obtain out-of-stock product based on customer
requests.",
"Contacted customer to follow up on purchases,
suggest new merchandise and inform on promotions
and upcoming events."
],
"Country": null,
"City": "Chicago",
"EndDate": "2016-09",
"JobTitle": "Customer Service Representative"
}
]
},
"processingInfo": {
"Version": "2.06.18",
"FileHash": "58223d83965cfaefe4c9bc1eac123b3b",
"Duration": "6.593",
"NumberOfPages": "1"
}
}
|