Skip to main content

Screening Questions

Updated over 5 months ago

Convert supports the Teamtailor question types Boolean, Choice, Range, Text, Date and Number.
​

Answers are saved as a Teamtailor Answer entity and a relationship is created with the question and the candidate.


Answers are saved by making an upsert request to the Teamtailor API.


Example request:

curl -X POST https://api.teamtailor.com/v1/answers \
-H 'Authorization: Token token=apiToken' \
-H 'X-Api-Version: 20210218'
-d '{
"data": {
"type": "answers",
"attributes": {
"text": "this is the answer"
},
},
"relationships": {
"question": {
"id": "question ID",
"type: "questions"
},
"candidate": {
"id": "candidate ID",
"type: "candidates"
}
}
}'
Did this answer your question?