歌单管理
更新歌单
更新歌单信息。支持通过 cover_song_id 从指定歌曲复制封面,与 cover_path/cover_url 互斥且优先级更高
put/playlists/{id}
Path parameters
idinteger required
歌单ID
Request body
Example request
{
"cover_song_id": 42,
"description": "收藏的经典歌曲",
"name": "我的最爱"
}Response
更新成功
Example response
{
"cover_url": "https://example.com/playlist.jpg",
"created_at": "2024-01-01T12:00:00Z",
"description": "收藏的经典歌曲",
"id": 1,
"labels": [
"[\"built_in\"]"
],
"name": "我的最爱",
"song_count": 10,
"type": "normal",
"updated_at": "2024-01-01T12:00:00Z"
}