Get all survey questions
GET/v3/questions
Get all survey questions
Request
Query Parameters
limit number
Possible values: >= 1
and <= 100
Default value: 50
page number
Possible values: >= 1
Default value: 1
tag_name string
survey_id numberrequired
Id of Survey
language_label string
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
has_next_page boolean
More questions in the survey
data
object[]
id number
type string
Question type
position string
Position of question
hasDisplayLogic boolean
Whether the question has display logic
properties object
survey_id number
Id of the Survey
section_id number
Id of the section question is part of
account_id number
Account Id
parent_question_id number
If question is a subquestion, parent_question_id will be the Id of the parent question
{
"has_next_page": true,
"data": [
{
"id": 1,
"type": "TextInput",
"position": "2.000000000000000",
"hasDisplayLogic": false,
"properties": {},
"survey_id": 2,
"section_id": 3,
"account_id": 2,
"parent_question_id": 3
}
]
}
Loading...