アンケート設問一覧(管理者向け)

GET/manage/events/:eventId/questions

下書きを含む全設問を返します。questionsRead 権限が必要です。

認証要ログイン

パスパラメータ

eventIdstring必須

イベント ID または slug。

レスポンス

フィールド説明
questionsQuestion[]設問の配列。
リクエスト
curl https://api.4s.link/manage/events/EVENT_ID/questions \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"questions": [
{
"id": "q1a2b3c4-...",
"refId": "purpose",
"type": "text",
"title": "参加目的を教えてください",
"description": null,
"required": true,
"options": [],
"ticketIds": [],
"order": 0,
"status": "PUBLISHED",
"searchable": false,
"showOnDashboard": false
}
]
}