POST
/
api
/
ats
/
v1
/
candidates
curl --request POST \
  --url https://api.bindbee.dev/api/ats/v1/candidates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-connector-token: <x-connector-token>' \
  --data '{
  "data": {
    "first_name": "John",
    "last_name": "Doe",
    "company": "Google",
    "title": "SOFTWARE ENGINEER",
    "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"
    ],
    "avatar": "https://www.example.com/avatar.jpg",
    "job_interview_stage_id": "018b4bfb-5ece-70b1-ad5e-862a9433aa65",
    "job_id": "018b4bfb-5ece-70b1-ad5e-862a9433aa65"
  },
  "remote_user_id": "018b4bfb-5ece-70b1-ad5e-862a9433aa65"
}'
"<any>"

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

Body

application/json
data
object
required
remote_user_id
string

The remote user's id

Response

200
application/json
Successful Response

The response is of type any.