GET
/
api
/
ats
/
v1
/
candidates
/
{id}
curl --request GET \
  --url https://api.bindbee.dev/api/ats/v1/candidates/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-connector-token: <x-connector-token>'
{
  "id": "018b18ef-c487-703c-afd9-0ca478ccd9d6",
  "remote_id": "123321",
  "modified_at": "2021-10-16T00:00:00Z",
  "raw_data": {
    "key_1": "Platform dependent data 1",
    "key_2": "Platform dependent data 2"
  },
  "custom_fields": {
    "category_group": "REG",
    "disability_type": "ASBERG",
    "hire_date": "1991-03-16T00:00:00",
    "hire_source": "REFER",
    "nationality": "USA",
    "original_hire_date": "1991-03-16T00:00:00"
  },
  "first_name": "John",
  "last_name": "Doe",
  "company": "Google",
  "title": "SOFTWARE ENGINEER",
  "last_interaction_at": "2021-07-01T00:00:00Z",
  "is_private": true,
  "can_email": true,
  "locations": [
    "San Francisco",
    "New York"
  ],
  "phone_numbers": [
    "123-456-7890"
  ],
  "email_addresses": [
    "john@doe.com"
  ],
  "urls": [
    {
      "type": "LINKEDIN",
      "value": "https://www.linkedin.com/in/johndoe"
    }
  ],
  "tags": [
    "JUNIOR",
    "INTERMEDIATE"
  ],
  "applications": [
    "018b4bfb-5ece-70b1-ad5e-862a9433aa65"
  ],
  "attachments": [
    "018b4bfb-5ece-70b1-ad5e-862a9433aa65"
  ],
  "remote_created_at": "2021-07-01T00:00:00Z",
  "remote_updated_at": "2021-07-01T00:00:00Z",
  "avatar": "https://www.example.com/avatar.jpg"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-connector-token
string
required

Path Parameters

id
string
required

Query Parameters

include_raw_data
boolean
default:
false

Include raw data in the response

include_custom_fields
boolean
default:
false

Whether to include custom fields in the response.

Response

200
application/json
Successful Response

The candidate object is used to represent any person who has applied as a candidate.

id
string
required
remote_id
string | null
required

The third-party API ID of the matching object.

modified_at
string
required

This is the datetime that this object was last updated by Bindbee

custom_fields
object | null
required

The custom fields related to the model

first_name
string | null
required

The candidate's first name.

last_name
string | null
required

The candidate's last name.

company
string | null
required

The name of the company where candidate has applied.

title
string | null
required

The position for which the candidate has applied

last_interaction_at
string | null
required

The date of the last interaction with the candidate.

is_private
boolean | null
required

Whether the candidate's information is private.

can_email
boolean | null
required

Whether the candidate can be emailed.

locations
string[] | null
required

The location of the candidate.

phone_numbers
string[] | null
required

The candidate's phone numbers.

email_addresses
string[] | null
required

The candidate's email addresses.

urls
object[] | null
required

The candidate's URLs. This can include a personal website, LinkedIn profile, or other relevant URLs.

tags
string[] | null
required

The candidate's tags. Tags are used to categorize candidates and can be used to filter candidates in the UI.

applications
string[] | null
required

The candidate's applications.

attachments
string[] | null
required

The candidate's attachments.

remote_created_at
string | null
required

When the third party's candidate was created.

remote_updated_at
string | null
required

When the third party's candidate was last updated.

avatar
string | null
required

The candidate's avatar.

raw_data
object | null

This is the Raw data