ステージ一覧(管理者向け)

GET/manage/events/:eventId/stages

管理用のステージ一覧を返します。stagesRead 権限が必要です。

認証要ログイン

パスパラメータ

eventIdstring必須

イベント ID または slug。

レスポンス

フィールド説明
stagesStage[]ステージの配列。
リクエスト
curl https://api.4s.link/manage/events/EVENT_ID/stages \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"stages": [
{
"id": "sg1a2b3c-...",
"name": "Main Hall",
"description": "...",
"capacity": 300,
"order": 0
}
]
}