コミュニティのプレイリスト

GET/communities/:id/playlists

指定コミュニティの公開プレイリストを取得します(アイテムは含みません)。

認証任意(ログイン時に応答が変化)

パスパラメータ

idstring必須

コミュニティ ID

レスポンス

フィールド説明
playlistsPlaylist[]プレイリスト配列(itemCount 付き)
リクエスト
curl https://api.4s.link/communities/ID/playlists \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"playlists": [
{
"id": "pl1-...",
"communityId": "c1d2e3f4-...",
"name": "おすすめイベント",
"description": "...",
"thumbnailImageUrl": "https://.../thumb.png",
"sortOrder": 0,
"sticky": false,
"featured": false,
"itemCount": 5,
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-07-01T00:00:00.000Z"
}
]
}