登壇セッション

GET/users/:id/sessions

指定ユーザーが登壇者として確定しているセッションを取得します。公開済みイベントの、下書きでないセッションだけが返ります。開始時刻の降順です。

認証不要

パスパラメータ

idstring必須

ユーザー ID。

クエリパラメータ

eventIdstring

イベントで絞り込み。

レスポンス

フィールド説明
sessionsSession[]セッション配列(`event` に開催イベントの概要が付く)
リクエスト
curl https://api.4s.link/users/ID/sessions \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"sessions": [
{
"id": "s1a2b3c4-...",
"title": "React Native の New Architecture",
"startTime": "2026-06-01T01:00:00.000Z",
"endTime": "2026-06-01T01:40:00.000Z",
"event": {
"id": "e1f2a3b4-...",
"slug": "tech-conf-2026",
"title": "4S Tech Conference 2026",
"thumbnailUrl": null
}
}
]
}