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. 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.
format AtsSyncCandidateSyncApplicationAttachmentChecksumFormatInput! Required
Encoding format of the checksum value.
checksum String! Required
Checksum value of the file content, calculated using the specified algorithm and encoded in 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.
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 where 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.
workAuthorizations [AtsSyncCandidateSyncApplicationWorkAuthorizationInput!]! default:[]
Work authorizations held by the applicant
type AtsSyncCandidateSyncApplicationWorkAuthorizationTypeInput
Type of work authorization.
countryCode CountryCode
ISO country code for the work authorization, such as "US."
countryName String
Human-readable country name for the work authorization, such as "United States."
displayLabel String
Display label for the work authorization, such as "Authorized to work in the US for any employer."
summary String
Text summary of the applicant's profile.
preferredLocale AtsSyncCandidateSyncLocaleInput
Applicant's preferred locale.
language LanguageCode
Preferred language of the applicant.
country CountryCode
Preferred country of the 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, "workAuthorizations": [ AtsSyncCandidateSyncApplicationWorkAuthorizationInput ], "summary": "xyz789", "preferredLocale": AtsSyncCandidateSyncLocaleInput}