ミーティング場所一覧

GET/events/:eventId/meeting-spots

イベント運営者が設定したミーティング場所の一覧を返します。

認証不要

パスパラメータ

eventIdstring必須

イベント ID または slug。

レスポンス

フィールド説明
meetingSpotsMeetingSpot[]ミーティング場所の配列。
リクエスト
curl https://api.4s.link/events/EVENT_ID/meeting-spots \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"meetingSpots": [
{
"id": "ms1a2b3-...",
"name": "Meeting Table A",
"description": "...",
"capacity": 4,
"active": true,
"imageUrl": "https://.../spot.png",
"order": 0
}
]
}