Own survey answers
GET
/events/:eventId/my-questionsReturn the survey questions and the authenticated user's own answers.
| Auth | Login required |
|---|
Path parameters
eventIdstringrequiredEvent ID or slug.
Response
| Field | Type | Description |
|---|---|---|
questions | Question[] | 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": "情報収集のため" }}]}