設問の並び順を変更

PUT/manage/events/:eventId/questions/orders

設問の表示順を一括で変更します。questionsWrite 権限が必要です。

認証要ログイン

パスパラメータ

eventIdstring必須

イベント ID または slug。

リクエストボディ

questionIdsstring[]必須

表示したい順に並べた設問 ID の配列。

リクエスト
curl https://api.4s.link/manage/events/EVENT_ID/questions/orders \
-X PUT \
-H "Authorization: Bearer 4s_at_..." \
-H "Content-Type: application/json" \
-d '{
"questionIds": ["q1a2b3c4-...", "q2b3c4d5-..."]
}'
レスポンス例
{
"questions": [
{ "id": "q1a2b3c4-...", "order": 0 },
{ "id": "q2b3c4d5-...", "order": 1 }
]
}