curl --location --request POST '/playlists' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "string",
"description": "string",
"type": "PLAYLIST",
"isPrivate": true
}'{
"id": 0,
"title": "string",
"type": "PLAYLIST",
"owner": {
"id": 0,
"username": "string"
},
"tracks": [
{
"trackId": 0,
"title": "string",
"durationSeconds": 0,
"trackUrl": "http://example.com"
}
]
}