This endpoint allows Suppliers to check if a respondent will able to qualify the survey or not before actualy sending them to the innovate platform.
Response
status
"prequalified" - respondent satisfies the available pre-survey validations and ready to participate on the survey.
"disqualified" - respondent did not satisfy 1+ of the pre-survey validations and NOT ready to participate on the survey.
disqualification
[ <array/list of term reason categories - string> ]
Example
if the respondent trips the GEOIP validation “GEOIP” will be included in the disqualifications list. Additionally, if the survey N has been achieved, "OpportunityFull” would be included in the disqualifications list.
curl --location --request POST 'https://supplier.innovatemr.net/api/v2/supply/respondentPreSurveyCheck' \
--header 'x-access-token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"pid": "string",
"ip": "string",
"survNum": 0,
"deviceType": "string"
}'{
"apiStatus": "string",
"msg": "string",
"result": {
"status": "string",
"disqualification": "string"
}
}