Update a candidate

This endpoint allows you update candidates for a given reference.
This endpoint requires candidates_rw or my_candidates_rw scope.
put
https://www.welcomekit.co/api/v1/external/
candidates/:reference
candidate update
Request example
curl -X PUT "https://www.welcomekit.co/api/v1/external/candidates/wttj-d655345409a6097309156b05" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer WK_API_KEY" \
-d @- <<EOF
{
"email": "[email protected]",
"firstname": "Foo",
"lastname": "Bar",
"remote_resume_url": "http://example.com/resume.pdf",
"remote_portfolio_url": "http://example.com/portfolio.pdf"
}
EOF