createApplicationQuestionnaire mutation lets you create questionnaires in the structure expected by the SEEK API and returns an ID that can be specified when posting a job ad.createApplicationQuestionnaire mutation creates a new questionnaire.The SEEK API provides 3 question types for custom questions:FreeText presents the candidate with a free text input labelled with the question’s questionHtml.
They must input at least one character before submitting their application.SingleSelect presents the candidate with a set of mutually exclusive choices.
They must select a single choice before submitting their application.SEEK renders these questions either as radio buttons or a dropdown list, depending on the number of choices.MultiSelect presents the candidate with a set of non-exclusive choices.
They must select at least one choice before submitting their application.SEEK renders these questions as a list of checkboxes.value for each ApplicationQuestionnaireComponent during questionnaire creation.
You can then retrieve responses.*.component.value from the submission to correlate each response back to its corresponding component.If you manage questionnaires as a holistic collection in your software,
retrieve questionnaire.id to correlate the submission back to the questionnaire ID.mutation ($input: CreateApplicationQuestionnaireInput!) {
createApplicationQuestionnaire(input: $input) {
applicationQuestionnaire {
id {
value
}
}
}
}ApplicationQuestionnaire object is immutable.
If your software supports mutable questionnaires,
you may snapshot its latest state by creating a new ApplicationQuestionnaire at the time of posting.For detailed information on all available fields, refer to the CreateApplicationQuestionnaireInput schema definition.You can use our interactive builder to explore the ApplicationQuestionnaire components supported by the SEEK API.