POST
/
contacts
curl --request POST \
  --url https://api.alpharun.com/api/v1/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "job_opening_id": "<string>",
    "email": "[email protected]",
    "first_name": "<string>",
    "last_name": "<string>",
    "phone_number": "<string>",
    "resume": {
      "content": "<string>",
      "mimetype": "<string>"
    }
  }
]'
{
  "successful_imports_count": 123,
  "failed_imports_count": 123,
  "failed_contacts": [
    {
      "job_opening_id": "<string>",
      "email": "[email protected]",
      "first_name": "<string>",
      "last_name": "<string>",
      "phone_number": "<string>",
      "resume": {
        "content": "<string>",
        "mimetype": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json · object[]
Array of candidates to add to the job opening
job_opening_id
string
required

ID of the job opening to add contacts to

email
string
required

Email address of the contact

first_name
string

First name of the contact

last_name
string

Last name of the contact

phone_number

Phone number of the contact

resume
object

Resume of the contact.

Response

200
application/json
Candidates import results
successful_imports_count
integer
failed_imports_count
integer
failed_contacts
object[]