Skip to content

List questions in project

GET
/v2/projects/{projectId}/questions
curl --request GET \
--url https://api.surveycoder.io/v2/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/questions \
--header 'x-api-key: <x-api-key>'
projectId
required
string format: uuid

List of questions

Media type application/json
object
success
boolean
data
Array<object>
object
id
string format: uuid
text
string
status
string
Allowed values: pending codebook_ready coding coded
coding_type
string
response_count
integer
Example
{
"success": true,
"data": [
{
"text": "What did you like most about our service?",
"status": "pending"
}
]
}