歌单管理
设置歌单置顶状态
置顶/取消置顶歌单。置顶歌单在歌单列表中始终排在最前,多个置顶歌单按置顶时间倒序(最近置顶的排最前)。内置歌单(收藏、电台收藏)同样允许置顶,不做特殊限制。
put/playlists/{id}/pin
Path parameters
idinteger required
歌单ID
Request body
Example request
{
"pinned": true
}Response
更新后的歌单
Example response
{
"cover_url": "https://example.com/playlist.jpg",
"created_at": "2024-01-01T12:00:00Z",
"description": "收藏的经典歌曲",
"id": 1,
"labels": [
"[\"built_in\"]"
],
"name": "我的最爱",
"pinned_at": "2024-01-01T12:00:00Z",
"song_count": 10,
"sort_by": "position",
"sort_order": "asc",
"type": "normal",
"updated_at": "2024-01-01T12:00:00Z"
}