Get a Survey (설문 상세 조회)
{
"code": 200,
"message": "요청이 성공적으로 완료되었습니다.",
"survey": {
"id": string,
"title": string,
"description": string,
"thumbnailImageUrl": string,
"tags": string[],
"questionCount": number,
"isOfficial": boolean,
"participantCount": number,
"category": {
"id": number,
"name": string
},
"isPrivate": boolean,
"questions": [
{
"type": "MULTIPLE_CHOICE",
"id": string,
"title": string,
"description": string,
"imageUrl": string,
"isChoiceRandom": boolean,
"isMultipleAnswer": boolean,
"choiceType": "TEXT",
"orderNumber": number,
"choiceList": [
{
"id": string,
"content": string,
"imageUrl": string,
"orderNumber": number
}
]
},
{
"type": "DROPDOWN",
"id": string,
"title": string,
"description": boolean,
"orderNumber": number,
"isChoiceRandom": boolean,
"choiceList": [
{
"type": "TEXT",
"id": string,
"title": string,
"description": string,
"imageUrl": string,
"orderNumber": number
}
]
}
}
}Last updated