Screener questions can now be edited after publishing
-
When updated screener questions after publishing, the screener is effectively replaced
- This means that if answers have already been collected, they are still qualified on the original screener
- Only new screener responses will be qualified based on screener updates
createdAt field in the screener response to cross reference with the screener update time to manage different qualifications.
Question types and logic
The screenerquestionType can be selected from a set list of strings. Radio and checkbox answers can have additional answer logic and skip logic applied.
All projects require at least 2 screener questions
| questionType | Use case | answerValue Schema | Skip logic |
|---|---|---|---|
radio | Single select | 1 = Qualify 2 = Disqualify | Yes |
checkbox | Multi select | 1 = May Select 2 = Must Select 3 = Disqualify | Yes |
singleLineTextbox | Short form text box | n/a | No |
multiLineTextbox | Long form text box | n/a | No |
numericBox | Single entry number | n/a | No |
sliderScale | Number selector | n/a | N |
Basic screener question setup
POST: /v1/projects/:projectId/screener-questions The examples below show a basic setup for each question type.-
For all examples
isRequiredis set totrueandskipLogicis set tofalse - All question types can be required or not
-
Only
radioandcheckboxquestions can include skip logic- These question types can also include an
otheroption, but do not require it - The
radioexample shows the inclusion of anotheroption whilecheckboxexample shows nootheroption
- These question types can also include an
- Each example shows the minimum fields required, but other fields may be available.