自分のアンケート回答

GET/events/:eventId/my-questions

認証中ユーザー自身が回答したアンケートの設問と回答を返します。

認証要ログイン

パスパラメータ

eventIdstring必須

イベント ID または slug。

レスポンス

フィールド説明
questionsQuestion[]設問と自分の回答(answer)を含む配列。
リクエスト
curl https://api.4s.link/events/EVENT_ID/my-questions \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"questions": [
{
"id": "q1a2b3c4-...",
"type": "text",
"title": "参加目的を教えてください",
"required": true,
"answer": { "id": "qa1a2b3-...", "answer": "情報収集のため" }
}
]
}