List survey questions
GET
/events/:eventId/questionsList the survey questions asked during event registration.
| Auth | Not required |
|---|
Path parameters
eventIdstringrequiredEvent ID or slug.
Response
| Field | Type | Description |
|---|---|---|
questions | Question[] | 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"}]}