Surveys
Survey section allows to manage surveys.
Detail
Detail tab displays selected survey info.
Create / Edit
Edit tab allows to modify selected survey.
Survey ID
- Short and unique, ideally slug-based string. It forms public URL of the login / authentication links.Survey name
- User friendly name to display participant, e.g. on survey login / dashboard pagesLocale
- Associated localeScheme
- Associated survey schemeStart date
- Start date of the surveyEnd date
- End date of the surveySupport email
- Email associated with the survey.Help requests
are sent to this email unless there are users specifically assigned withsupport
permission in security tab, in which case the thehelp requests
are sent to those users.State
- Survey stateNot started
- Respondent won't be allowed to complete a recallActive
- Respondent will be allowed to complete a recallSuspended
- Respondent won't be allowed to complete a recall
Suspension reason
- IfSuspended
state is set, additional details can be passed on to respondent using this field.
Search options
Collect search data
-on
/off
control for search data contribution into the locale search index statisticsSorting algorithm
- Sorting algorithm to be used for foods searchMatch score weight
- Match score weight parameter for sorting algorithm
Users settings
Allow user personal identifiers
-on
/off
control to allow persistance ofemail
/name
/phone
fields in database for respondent accountAllow user custom fields
-on
/off
control to allow persistance ofuser custom fields
Authentication settings
Captcha verification
-on
/off
control captcha verification step during authenticationURL token character set
- string of allowed characters to be used for authentication tokens embedded into the URL(if empty, default set is used)URL token length
- Authentication token length (if empty, default length is used)URL Domain override
- URL used to generate full authentication links in CSV export file. Please note, valid redirect, CNAME or other mechanism to reach the original server needs to be set up.
Submission limits
Maximum allowed submissions per calendar day
- maximum number of recalls allowed within the survey per dayMaximum allowed total submissions
- maximum total number of recalls allowed within the surveyMinimum interval between submissions (seconds)
- the shortest minimal internal between two following submission by same respondent
External communication
Allow user generation
-on
/off
control to allow automatic user generationJWT secret for M2M communication
- string to sign JWT token.
If automatic user generation is enabled, it provides two ways to generate accounts.
1. JWT secret is left blank
- Anyone can generate new respondent account using following survey URL:
app.domain.com/:surveyId/generate-user
. - API endpoint is rate limited and protected by
captcha
to minimize the misuse - This is useful for
demo-like
surveys to allow open access to anyone
2. JWT secret is set
- API endpoint can be used to create new respondent accounts. See API docs for more details.
Notifications
Supported events:
survey.session.started
- Triggered when new session is startedsurvey.session.cancelled
- Triggered when session is cancelled by usersurvey.session.submitted
- Triggered when session is submitted
Supported notifications:
webhook
- Provides URL to be called with payload
POST https://my-submission-notification-url.example.com
authorization: Bearer {token}
content-type: application/json
intake24-version: 1.0.0
user-agent: intake24
{
"type": "survey.session.started" | "survey.session.cancelled",
"sessionId": string,
"surveyId": string,
"userId": string,
}
|
{
"type": "survey.session.submitted",
"sessionId": string,
"surveyId": string,
"userId": string,
"submissionId": string,
"data": {...}
}
If JWT secret is set, it is used to sign JWT token (algorithm HS256
) and attach as Bearer in Authorization
header to allow verification of the request.
Expected JWT payload with claims:
{
"type": "event-type",
"sessionId": "uuid",
"surveyId": "1",
"submissionId"?: "uuid",
"userId": "1",
"iat": 1711834245,
"exp": 1711834305,
"aud": "https://my-submission-notification-url.example.com",
"iss": "intake24",
"jti": "opaque-string"
}
slack
- to be implementedemail
- to be implemented
SurveyEventNotification job is used to dispatch survey event notifications.
Session settings
Store user session on server
- If enabled, user partial submission data are sent to server for store / retrieval. If disabled, user partial submission data are only stored locally in client browser.Session max age
- Session duration from start of the survey (ms-formatted
string, see ms for more information), e.g.2h
- resets session after 2 hours from start of the survey1d
- resets session after 1 day from start of the survey
Session fixed duration
- Fixed day-time session duration (ms-formatted
string, see ms for more information), e.g.1d+0h
- resets session next day at midnight2d+4h
- resets session in two days at 4am
Feedback settings
Feedback scheme
- Associated feedback scheme. If not set, feedback feature is disabled.Number of submissions for feedback
- Minimal number of submissions per respondent account to allow to access the feedback
TIP
Feedback access can be controlled on user/respondent level by specific user custom field
. To disable feedback for specific respondent, set user custom field
with:
- name
it24:feedback
- value:
false
or0
If it24:feedback
field is not set, feedback is enabled by default (respects above settings).
Scheme overrides
Overrides tab allows to override certain parts of the scheme without a need to create whole new scheme.
There are three sections that can be overridden in limited way, so it doesn't influence the overall scheme flow. UI is the same is in prompt editor
, so should feel familiar.
Settings overrides
Scheme settings overrides section allows to override each field of the scheme.
Meals overrides
Scheme meals overrides section allows to override whole default meal list
. If it is left empty, original one from scheme is used. If any entry is entered, it overrides the whole default scheme meal list.
Prompts overrides
Scheme prompts overrides section allow to override specific survey scheme prompt. When added to the list, user can modify the settings of particular prompt.
WARNING
New prompt cannot be added or existing prompt cannot be removed from the scheme in this way. It only allows to modify existing prompts in order to retain original scheme flow. If you need to add / remove prompts, clone existing scheme, modify it and assign to the survey.
Respondents
Survey respondents section allows to:
Create / view / search / edit / remove respondents
Bulk import respondents using CSV file. See
SurveyRespondentsImport
for more details about CSV file structure.Download respondents authentication details in CSV file
Authentication URLs
Authentication URLs are formed of:
- base URL:
app.domain.com
- survey ID:
{surveyId}
- authentication token:
{token}
Short URL patterns
app.domain.com/a/{token}
-context
patternapp.domain.com?auth={token}
-query
pattern
TIP
Short URL patterns can be used to let user land on survey home page
Full URL patterns
app.domain.com/{surveyId}?auth={token}
- user is redirected to the survey landing pageapp.domain.com/{surveyId}/recall?auth={token}
- user is redirected to the survey recall pageapp.domain.com/{surveyId}/feedback?auth={token}
- user is redirected to the survey feedback page
TIP
Full URL patterns using {token}
as query
parameter can be used in combination with any valid survey app URL to let user land on specific page
Submissions
Survey submissions with ability to search / view / delete submissions.
Sessions
Survey sessions with limited ability to search / view / delete partial recall data.
Tasks
Tasks section allows to submit resource specific tasks into the job queue with additional parameters. See job types for more information.
Jobs that can be submitted: