Candidates Query
This query will allow you to pull candidates from EverReal.
Introduction
Query
type Query {
candidates(input: CandidatesFilterListPaging): [Candidate]
}
type Candidate {
id: String
email: String
firstName: String
lastName: String
fullName: String
companyContactId: String
listingId: String
rating: Float
notes: String
candidateSource: String
isNewCandidate: Boolean
isNewApplicant: Boolean
isSharedApplicant: Boolean
isToDo: Boolean
isInvited: Boolean
isScheduled: Boolean
isApplicant: Boolean
isDisabled: Boolean
isPendingCandidate: Boolean
isFromInvestment: Boolean
hasSharedDataRoom: Boolean
longExposeNoViews: Int
longExposeLastView: DateTime
hadAcceptedSellingCancelationNotice: Boolean
sellingCancellationStatus: CandidateSellingCancellationStatusType
viewingStartDate: DateTime
disabledReason: CandidateDisabledReason
scheduledStatus: CANDIDATE_SCHEDULED_STATUS
scoring: CandidateScoreType
statuses: CandidateStatuses
notificationStatuses: CandidateNotificationStatuses
createdAt: DateTime
updatedAt: DateTime
applications: [ListingCandidateApplication]
listing: Listing
}
enum CANDIDATE_SCHEDULED_STATUS {
NOT_INVITED
INVITED
ADMIN_CANCELLED
CANDIDATE_CANCELLED
SCHEDULED
NEW_TIMESLOTS_REQUESTED
}
type ListingCandidateApplication {
id: String
candidateId: String
email: String
userId: String
isMainCandidate: Boolean
applicationDataString: String
applicationData: ApplicationData
}
type ApplicationData {
isFinancingReady: Boolean
isAnyoneSmoking: Boolean
hasPets: Boolean
hasEligibilityCertificate: Boolean
email: String
firstName: String
lastName: String
eligibilityExpirationDate: String
employmentType: String
householdPersons: Int
}
type CandidateSellingCancellationStatusType {
date: DateTime
checkedSellingCancellation: Boolean
checkedExplicitelyStartEarly: Boolean
checkedAcceptFee: Boolean
acceptedFeeDate: DateTime
}
type CandidateScoreType {
totalScore: Float
}
type CandidateDisabledReason {
reason: String
message: String
}
type CandidateStatuses {
scheduledStatus: String
vettingStatus: String
disabledStatus: String
}
type CandidateNotificationStatuses {
hasReceivedStep2InviteEmail: DateTime
hasReceivedStep2InvitationFromAdmin: DateTime
hasReceivedGdprNotification: DateTime
hasReceived24hrsBeforeViewingReminder: DateTime
hasReceivedAfterViewingInviteReminder: DateTime
hasReceived24hrAfterViewingStep2Reminder: DateTime
hadReceivedSellingCancelationNotice: DateTime
}
input CandidatesFilter {
id: String
companyId: String
ownerId: String
propertyGroupId: String
propertyId: String
candidateSources: [String]
disabledReasons: [String]
isApplicant: Boolean
isDisabled: Boolean
from: Date
to: Date
external: Boolean
updatedAt: IDateRange
}
input CandidatesFilterListPaging {
filter: CandidatesFilter
paging: GraphPaging
sort: GraphSorting
}Last updated