ミーティング場所の並び順を変更
POST
/manage/events/:eventId/meeting-spots/reorderミーティング場所の表示順を一括で変更します。meetingSpotsWrite 権限が必要です。
| 認証 | 要ログイン |
|---|
パスパラメータ
eventIdstring必須イベント ID または slug。
リクエストボディ
spotIdsstring[]必須表示したい順に並べた場所 ID の配列(必須)
リクエスト
curl https://api.4s.link/manage/events/EVENT_ID/meeting-spots/reorder \-X POST \-H "Authorization: Bearer 4s_at_..." \-H "Content-Type: application/json" \-d '{"spotIds": ["ms1a2b3-...", "ms2b3c4-..."]}'
レスポンス例
{"meetingSpots": [{ "id": "ms1a2b3-...", "order": 0 },{ "id": "ms2b3c4-...", "order": 1 }]}