Skip to main content

Screening Questions

Updated over 5 months ago

Convert supports the SAP question types QUESTION_TEXT, QUESTION_NUMERIC, QUESTION_RATING and QUESTION_MULTI_CHOICE.


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


Example request:
​

curl -X POST .../odata/v2/upsert \
-H 'Authorization: Bearer AccessToken' \
-d '{
{
"__metadata": {
"type": "SFOData.JobApplication",
"uri": "JobApplication(<applicationId>L)",
},
"jobApplicationQuestionResponse": {
"order": "1",
"answer": "This is the answer",
},
}'
Did this answer your question?