List survey questions

GET/events/:eventId/questions

List the survey questions asked during event registration.

AuthNot required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
questionsQuestion[]Array of questions.
Request
curl https://api.4s.link/events/EVENT_ID/questions \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"questions": [
{
"id": "q1a2b3c4-...",
"type": "text",
"title": "参加目的を教えてください",
"description": null,
"required": true,
"options": [],
"order": 0,
"status": "PUBLISHED"
}
]
}