Skip to content

아티스트플레이리스트조회

SimJungUk edited this page Jul 12, 2019 · 1 revision

아티스트 플레이리스트 조회

메소드 경로 짧은 설명
GET /core/users/{userIdx}/pl/custom 사용자(아티스트) 플레이리스트 조회

요청 헤더

Content-Type: application/json

응답 바디

조회 성공

{
    "status": 200,
    "success": true,
    "message": "플레이리스트 조회",
    "data": [
        {
            "_id": "5d25c7cbf34ce952409b9ffe",
            "playlistName": "졸려요",
            "playlistComment": "졸려요~?",
            "userIdx": 105,
            "thumbnail": [
                "https://simjus3.s3.ap-northeast-2.amazonaws.com/1562721263387.jpg",
                "https://simjus3.s3.ap-northeast-2.amazonaws.com/1562721263387.jpg",
                "https://simjus3.s3.ap-northeast-2.amazonaws.com/1562721263387.jpg",
                "https://simjus3.s3.ap-northeast-2.amazonaws.com/1562721263387.jpg"
            ]
        }
    ]
}

조회 실패

{
    "status": 404,
    "success": false,
    "message": "사용자를 찾을 수 없습니다."
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "success": false,
    "message": "INTERNAL SERVER ERROR",
}

Clone this wiki locally