歌单管理
创建歌单
创建一个新的歌单
post/playlists
Request body
Example request
{
"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"
}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"
}