Skip to main content

Candidates

Updated over 5 months ago

Candidates are created by making a POST request to the Teamtailor API.
​

Convert does not allow creating job applications on which the candidate has not agreed to the privacy statement and terms of service.


The merge option is set to true in order to enable the application of the same candidate to different job openings.


Example request to the Teamtailor API:
​

curl -X POST https://api.teamtailor.com/v1/candidates \
-H 'Authorization: Token token=apiToken' \
-H 'X-Api-Version: 20210218'
-d '{
"data": {
"type": "candidates",
"attributes": {
"email": "[email protected]",
"first-name": "Alex",
"last-name": "Wilson",
"merge": true,
"phone": "+46720000000",
"unsubscribed": true,
"set-consent-expiration": true,
},
},
}'
Did this answer your question?