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",
},
}'
