AtsSyncCandidateSyncApplicantDetailsInput
Input Object
Input to applicant details.
Fields
name String! Required
Full name of the applicant.
streetAddress String
Applicant's street address, including street name and number, city, administrative region, and postal code.
Example (USA) 10721 Domain Dr, Austin, TX 78758 Example (UK) 20 Farringdon Rd, London EC1M 3HE
Used to generate geolocation data for the applicant. Provide as accurate a value as possible.
postalCode String
Postal code for the applicant's address.
email EmailAddress! Required
Contact email address for the applicant.
phone PhoneNumber
Contact phone number for the applicant.
country CountryCode
Country of residence for the applicant.
attachments [AtsSyncCandidateSyncApplicationAttachmentInput!]! default:[]
File attachments for the application. Can include multiple resumes, cover letters, and other attachments.
Only one RESUME and one COVER_LETTER attachment are allowed. Use OTHER_RESUME and OTHER_COVER_LETTER for additional resumes and cover letters.
Only the RESUME attachment is parsed for applicant matching and ranking.
fileType AtsSyncCandidateSyncApplicationFileTypeInput! Required
Type of file attached to the application, such as a resume, cover letter, or other document.
fileName String! Required
File attachment name.
contentType String! Required
File attachment original media type.
contentLength Int64! Required
Content length of the file attachment.
fileChecksum AtsSyncCandidateSyncApplicationAttachmentChecksumInput! Required
Checksum for verifying file attachment integrity.
Calculate the checksum of the file content using the specified algorithm and format before uploading.
algorithm AtsSyncCandidateSyncApplicationAttachmentChecksumAlgorithmInput! Required
Hashing algorithm used to calculate the checksum
Specifies which cryptographic hash function was used to generate the checksum value.
format AtsSyncCandidateSyncApplicationAttachmentChecksumFormatInput! Required
Encoding format of the checksum value
Specifies how the raw checksum bytes are encoded as a string.
checksum String! Required
Checksum value of the file content
The checksum should be calculated using the specified algorithm on the complete file contents, then encoded using the specified format.
additionalInfo [String!]! default:[]
Additional information about the application that does not fit other categories.
awards [AtsSyncCandidateSyncApplicationAwardInput!]! default:[]
Applicant's awards.
education [AtsSyncCandidateSyncApplicationEducationInput!]! default:[]
Applicant's education history.
degree String
Type of degree (e.g. "Bachelor of Science")
minor String
Minor field of study for this education history
fieldOfStudy String
Major field of study for this education history
school String
Name of the school attended
location String
Location (address) where the applicant attended
startDate Date
Date at which this education began
endDate Date
Date at which this education ended
groups [AtsSyncCandidateSyncApplicationGroupInput!]! default:[]
Applicant's membership in groups.
languageProficiencies [AtsSyncCandidateSyncApplicationLanguageProficienciesInput!]! default:[]
Languages known by the applicant.
name LanguageCode! Required
Language name.
proficiency String
Language level of proficiency.
certifications [AtsSyncCandidateSyncApplicationCertificationInput!]! default:[]
Applicant's licenses and certifications.
name String
Certification or license name.
type String
Certification or license type.
description String
Description or additional details about the certification or license.
country CountryCode
Country where the certification or license was obtained.
dateIssued Date
Issue date for the certification or license.
expirationDate Date
Expiration date for the certification or license.
links [AtsSyncCandidateSyncApplicationLinkInput!]! default:[]
Links to social media sites, blogs, and other sites provided by the applicant.
workExperience AtsSyncCandidateSyncApplicationWorkExperienceInput
Applicant's work experience.
mostRelevantTitle String
Most relevant job title held by the applicant.
mostRelevantCompany String
Company associated with the most relevant job title held by the applicant.
workHistory [AtsSyncCandidateSyncApplicationWorkExperienceDetailsInput!]! default:[]
Full employment history for the applicant.
title String
Title held at the position
company String
Company at which this position was held
description String
Description or additional details about this work experience
location String
Location (address) where the applicant worked
startDate Date
Start date of the work experience
endDate Date
End date of the work experience
skills [AtsSyncCandidateSyncApplicationSkillInput!]! default:[]
Applicant's skills.
military AtsSyncCandidateSyncApplicationMilitaryDetailsInput
Applicant's military commendations.
militaryCommendations String
Military commendations received by the applicant
militaryServices [AtsSyncCandidateSyncApplicationMilitaryServiceInput!]! default:[]
Details about military service for this applicant
Example
{ "name": "xyz789", "streetAddress": "xyz789", "postalCode": "xyz789", "email": "test@test.com", "phone": "+17895551234", "country": "US", "attachments": [ AtsSyncCandidateSyncApplicationAttachmentInput ], "additionalInfo": ["abc123"], "awards": [AtsSyncCandidateSyncApplicationAwardInput], "education": [ AtsSyncCandidateSyncApplicationEducationInput ], "groups": [AtsSyncCandidateSyncApplicationGroupInput], "languageProficiencies": [ AtsSyncCandidateSyncApplicationLanguageProficienciesInput ], "certifications": [ AtsSyncCandidateSyncApplicationCertificationInput ], "links": [AtsSyncCandidateSyncApplicationLinkInput], "workExperience": AtsSyncCandidateSyncApplicationWorkExperienceInput, "skills": [AtsSyncCandidateSyncApplicationSkillInput], "military": AtsSyncCandidateSyncApplicationMilitaryDetailsInput}