Create a candidate
This endpoint allows you create new candidates for a given job_reference.
For example, you could create a Chrome Extension which makes it easy for recruiters to create new candidates… :)
Also, if you don’t want to give full access to all your candidates to external services, you may use the
my_candidates_rw
scope which will let them create candidates and only access to the candidates they created. This endpoint requires
candidates_rw
or my_candidates_rw
scope.post
https://www.welcomekit.co/api/v1/external/
candidates
candidate creation
Request example
curl -X POST "https://www.welcomekit.co/api/v1/external/candidates" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer WK_API_KEY" \
-d @- <<EOF
{
"email": "[email protected]",
"firstname": "Foo",
"lastname": "Bar",
"organization_reference": "Pg4eV6k",
"job_reference": "WTTJ_KmqkD1Y",
"remote_resume_url": "http://example.com/resume.pdf",
"remote_portfolio_url": "http://example.com/portfolio.pdf"
}
EOF
Last modified 2yr ago