Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. applicant data (mandatory)
  2. applications (optional)
  3. history (optional)
  4. documents as paths or UNC paths (for on premise customers only) or inline BASE64-encoded (optional)

Example XML

Code Block
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="utf-8"?>
<applicants>
  <applicant>
    <id>1234567</id>
    <gender>male</gender>
    <title></title>
    <firstName>John</firstName>
    <lastName>Doe</lastName>
    <titleAfterName>MSc</titleAfterName>
    <street>Street 123</street>
    <zipCode>12345</zipCode>
    <city>City</city>
    <country>Austria</country>
    <birthdate>01-Jun-1900</birthdate>
    <phone>123-123-123</phone>
    <email>wolkerstorfer@gmail.com</email>
    <nationality>Austria</nationality>
    <updateDateUser>13.06.2016 13:59:04</updateDateUser>
    <updateDateApplicant>22.04.2016 15:14:43</updateDateApplicant>

    [...optional custom fields for application...]
 
    <experience>
      <company>ePunkt Internet Recruiting GmbH</company>
      <position>Master of Recruiting</position>
      <tasks>a lot of tasks</tasks>
      <quitReason>current position</quitReason>
      <careerLevel>4 - Management</careerLevel>
      <beginDate>Dec-2000</beginDate>
      <endDate></endDate>
    </experience>
    [...more experience...]    

    <education>
      <type>University</type>
      <location>Linz</location>
      <specialization>Recruiting</specialization>
      <isFinished>True</isFinished>
      <beginDate>Oct-2008</beginDate>
      <endDate>Jul-2010</endDate>
    </education>
 
    [...more education...]

    <document type="CV" format="pdf">\\path\to\document\cv.pdf</document>
    <document type="Photo" format="jpeg">\\path\to\document\photo.jpeg</document>
 
    [...more documents...]

    <job>
      <id>10907</id>
      <name>Senior Recruiter</name>
      <jobStatus>Open</jobStatus>
      <applicantJobStatus>Declined</applicantJobStatus>
      <user>Sue User</user>
    </job>
 
    [...more jobs...]   

    <history date="08/08/2013 22:00:44" user="">
      <type>Erstellung</type>
      <subject><![CDATA[]]></subject>
      <body><![CDATA[]]></body>
    </history>
 
    [...more history...]
    
  </applicant>
</applicants>

Applicant Data

These fields represent the applicant's base data and some meta-information. There may be some additional custom fields included in the feed which are based of the eRecruiter customization.

FieldTypeDescription
idnumbereRecruiter ID
gendermale|female|othergender
titlestringacademic title before name
firstNamestringfirst name
lastNamestringlast name
titleAfterNamestringacademic title after name
streetstringstreet address
zipCodestringaddress ZIP code
citystringaddress city
countrystringaddress country
birthdatedate (DD-MMM-YYYY)birth date
phonestringphone number
emailstringe-mail address
nationalitystringnationality/citizenship
updateDateUserdate (DD.MM.YYYY HH:MM:SS)date of last update by eRecruiter user
updateDateApplicantdate (DD.MM.YYYY HH:MM:SS)date of last update by applicant

Experience

The applicants work experience.

FieldTypeDescription
companystringname of company
positionstringname of position
tasksstringdescription of performed tasks
quitReasonstringreason for quitting
careerLevelstringjob/career level (based on customization)
beginDatedate (MMM-YYYY)start date of job
endDatedate (MMM-YYYY)end date of job (can be empty)

Education

The applicant's education.

FieldTypeDescription
typestringtype of education (based on customization)
locationstringlocation of education, i.e. a city name
specializationstringdescription of the education
isFinishedbooleanflag if the education has been finished
beginDatedate (MMM-YYYY)start date of job
endDatedate (MMM-YYYY)end date of job (can be empty)

Document

The applicant's document either as UNC-paths or inline as encoded documents.

FieldTypeDescription
typestringtype of document (based on customization)
formatstringfile format (MIME type)
contentstringpath to the document or BASE64-encoded document

Job (Application)

The applicant's applications in the eRecruiter. There may be additional information, if the applicant accepted a job and hiring information has been added.

FieldTypeDescription
idnumbereRecruiter job ID
namestringname of the job
jobStatusstringstatus of the job
applicantJobStatusstringstatus of the applicant regarding to the job
userstringname of the responsible eRecruiter user

History

The applicant's history in the eRecruiter including all history entries that were generated by the system or the eRecruiter users.

FieldTypeDescription
datedate (MM/DD/YYYY HH:MM:SS)date of history entry
typestringtype of entry
subjectstringsubject/title
bodystringbody text

Usage

The applicant export can either be used through the eRecruiter backend or through a web service. The eRecruiter user must have permissions to export data to either one of it.

eRecuiter

The eRecruiter backend user interface can be found under .../Modules/Export/.

Web service

The webservice URL is .../Services/ApplicantExport.ashx

Export modes

There are two possible export modes for either one or multiple applicants.
Image Added

Common Parameter

ParameterTypeDescription
usernumberThe ID of the user. The user must have the permission to export data. Required.
passstringThe user's hashed password. Required.
documentsIgnore|LocalPaths|EncodedInclude the documents as paths (LocalPaths) or include them as a base 64 encoded string (Encoded). The default value is "Ignore".
historytrue|falseInclude the history information or not. The default value is "false".
jobstrue|falseInclude the jobs of an applicant or not. The default value is "false".

Mode 1 - Single applicant export

ParameterTypeDescription
applicantIdnumberThe identifier of the applicant to export.

Mode 2 - Multiple applicant export

ParameterTypeDescription
statusGroups{StatusGroup[,Date]|}

StatusGroup: Accepted|Denied|One|Two|Three|Four
Date: YYYY-MM-DD

Filters any applications in the specified status group, starting at the date if provided.

filterstringFilters the applicants by a search phrase.
datedateStarting from the date provided to the current date.
takenumberSpecifies the number of applicants to be taken.
skipnumberSpecifies the number of applicants to be skipped.

Image Added

Status Groups of applicants

The four status groups of open applicants are mapped to the parameter values as shown in the table below.

Rejected applicants have status group "Denied". Placed applicants have status group "Accepted".

Status groupParameter value
First status groupOne
Second status groupTwo
Third status groupThree
Fourth status groupFour