ステージ一覧

GET/events/:eventId/stages

イベントのステージ(会場)一覧を返します。

認証不要

パスパラメータ

eventIdstring必須

イベント ID または slug。

レスポンス

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