Lead Schema

The lead object represents a hiring process. A single person can have multiple hiring processes with a company. This is represented by multiple candidate and/or leads objects that have the same person_uid.

FieldTypeDescription
uidstringlead UID
person_uidstringThe lead's person UID. Each person can have multiple candidate and/or leads objects associated with it. Each lead object represents a hiring process.
first_namestring
middle_namestring
last_namestring
emailstring
phonestring
mobile_phonestring
id_numberstring
linkedin_urlstring
deletedbooleanIndicates whether the lead has been deleted. When true the lead object will only include the uid
position_uidstringPosition UID
source_contactobjectReceiving this object requires permission
source_contact.uidstring
source_contact.first_namestring
source_contact.last_namestring
source_contact.emailstring
sourceobjectReceiving this object requires permission
source.uidstring
source.namestring
source.typestring
time_createdstringFormat: YYYY-MM-DDTHH:mm:ssZ
URLstringURL of the lead profile in Recruit
statusstringOne of the following:
In progress
On hold
Rejected
Not interested
outreach_statusstringOne of the following:
Not Contacted
Contacted
Responded
time_last_status_changedstringFormat: YYYY-MM-DDTHH:mm:ssZ
resumeobjectThe resume object is only included when a dedicated permission is granted
resume.namestring
resume.urlstringNote that the URL to the resume file has a time limit of 15 minutes. If it expires, read the candidate object again to refresh the URL
tagsarray of objects
tags[].namestringName of the candidate tag
disposition_reasonobjectThe reason for ending the hiring process. Applies for candidates with status of Rejected or Withdrawn
salary_expectationsstringCandidate salary expectations. Permission to read the candidate's salary expectations is required.
disposition_reason.reasonstring
disposition_reason.notestring
addressobject
address.countrystring
address.statestring
address.zipstring
address.street_addressstring
address.citystring
{
  "uid": "00.BBB",
  "person_uid": "45.G72",
  "first_name": "Jane",
  "middle_name": null,
  "last_name": "Smith",
  "email": "[email protected]",
  "phone": null,
  "mobile_phone": "052-7654321",
  "id_number": null,
  "linkedin_url": "https://www.linkedin.com/in/jane-smith",
  "deleted": false,
  "position_uid": "11.22",
  "source_contact": {
    "uid": "99.XYZ",
    "first_name": "John",
    "last_name": "Recruiter",
    "email": "[email protected]"
  },
  "source": {
    "uid": "88.ABC",
    "name": "LinkedIn",
    "type": "Social"
  },
  "time_created": "2024-06-01T09:00:00Z",
  "URL": "http://app.comeet.co/app/index.html?goto_url=/lead/5678",
  "status": "In progress",
  "outreach_status": "Not Contacted",
  "resume": {
    "name": "jane_smith_cv.pdf",
    "url": "https://comeet-xxx.amazonaws.com/lead-resume-url"
  },
  "tags": [
    {
      "name": "Strong Profile"
    }
  ],
  "disposition_reason": null,
  "salary_expectations": "90k / Annual",
  "address": {
    "country": "US",
    "state": "NY",
    "zip": "10001",
    "street_address": "45 W 34th St",
    "city": "New York"
  }
}