Retrieves all the candidates who have applied for a job.

Response Definitions

Response ItemDescription                                         Data type
idThe ID associated with the candidate. Each candidate ID is assigned by NewCraft.String
{attributes}/idThe ID associated with the candidate. Each candidate ID is assigned by NewCraft.String
{attributes}/addressThe address of the candidate.String
{attributes}/first_nameThe first name of the candidate.String
{attributes}/last_nameThe last name of the candidate.String
{attributes}/emailThe candidate's email address.String
{attributes}/email_typeDescribes type of email address on file for the candidate; particularly, whether it is professional or personal.String
{attributes}/job_idThe ID associated with the job the candidate applied for. Each job ID is assigned by NewCraft, and can be used to access more specific information regarding the job through the Jobs endpoint.String
{attributes}/phone_number_typeDescribes the type of phone number on file for the candidate; particularly, if it is a mobile, home, or work phone number.String
{attributes}/phone_numberThe candidate's phone number. This includes the area code, making for a 10-digit number in the format "XXX-XXX-XXXX".String
{attributes}/statusThe status of the candidate. "applied" means that the candidate has applied for the job and not yet been interviewed, "interviewed" means that the candidate has been interviewed and is awaiting a hiring decision, "hired" means that the candidate has been hired.String

Sample Response

{
  "data": [
    {
      "id": "cf778177-84f5-4401-a388-c5b1ee0221e8",
      "type": "Candidate",
      "attributes": {
        "id": "cf778177-84f5-4401-a388-c5b1ee0221e8",
        "address": "226 St. James Pl, Brooklyn, NY 11238",
        "first_name": "Kimberly",
        "last_name": "Jones",
        "email": "[email protected]",
        "email_type": "work",
        "job_id": "012c7540-e319-46c7-b387-e06b352cc54f",
        "phone_number_type": "mobile",
        "phone_number": "123-444-5678"
        "status": "applied"
      }
    },
    {
      "id": "cf778177-84f5-4401-a388-c5b1ee0221e8",
      "type": "Candidate",
      "attributes": {
        "id": "cf778177-84f5-4401-a388-c5b1ee0221e8",
        "address": "226 St. James Pl, Brooklyn, NY 11238",
        "first_name": "Kimberly",
        "last_name": "Jones",
        "email": "[email protected]",
        "email_type": "work",
        "job_id": "012c7540-e319-46c7-b387-e06b352cc54f",
        "phone_number_type": "mobile",
        "phone_number": "123-444-5678"
        "status": "applied"
      }
    }
  ]
}
}
Language
Authorization
OAuth2
URL
Click Try It! to start a request and see the response here!