Job applications are created by making request to the Teamtailor API.
β
Job applications are saved as a Teamtailor Job Application entity and a relationship is created with the job and the candidate.
Example request to the Teamtailor API:
β
curl -X POST https://api.teamtailor.com/v1/job-applications \
-H 'Authorization: Token token=apiToken' \
-H 'X-Api-Version: 20210218'
-d '{
"data": {
"type": "job-applications",
"attributes": {
"send-default-reply": false,
"send-user-notifications": false
},
},
"relationships": {
"job": {
"id": "job ID",
"type: "jobs"
},
"candidate": {
"id": "candidate ID",
"type: "candidates"
}
}
}'
