セッション詳細

GET/events/:eventId/sessions/:id

セッション 1 件の詳細を返します。

認証不要

パスパラメータ

eventIdstring必須

イベント ID または slug。

idstring必須

セッション ID。

リクエスト
curl https://api.4s.link/events/EVENT_ID/sessions/ID \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"id": "s1a2b3c4-...",
"title": "Opening Keynote",
"description": "...",
"status": "COMPLETED",
"startTime": "2026-09-01T01:00:00.000Z",
"endTime": "2026-09-01T02:00:00.000Z",
"stage": { "id": "sg1a2b3c-...", "name": "Main Hall" },
"speakers": [
{ "id": "sp1a2b3-...", "firstName": "太郎", "lastName": "山田", "title": "Engineer", "avatarUrl": "https://.../avatar.png" }
]
}