Own survey answers

GET/events/:eventId/my-questions

Return the survey questions and the authenticated user's own answers.

AuthLogin required

Path parameters

eventIdstringrequired

Event ID or slug.

Response

FieldTypeDescription
questionsQuestion[]Array of questions, each including the user's own answer.
Request
curl https://api.4s.link/events/EVENT_ID/my-questions \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"questions": [
{
"id": "q1a2b3c4-...",
"type": "text",
"title": "参加目的を教えてください",
"required": true,
"answer": { "id": "qa1a2b3-...", "answer": "情報収集のため" }
}
]
}