Skip to content

멤버십리스트조회

KIMSOYEON edited this page Jan 8, 2019 · 3 revisions

멤버쉽 리스트 조회

선필

메소드 경로 설명
GET /membership 해당 유저 멤버쉽 리스트 조회

요청 헤더

Content-Type: application/json
Authorization: token

응답 바디

멤버쉽 리스트 조회 성공시

{
    "status" : 200,
    "message" : "멤버쉽 리스트 조회 성공",
    "data" :
     
         [
        {
            "cafe_id": 1, 
            "cafe_name": "cafename1",
            "membership_create_date": "2019-01-02T17:38:07.000+0000",
            "cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/KakaoTalk_Photo_2018-12-16-00-08-50.jpeg"
        },
        {
            "cafe_id": 2,
            "cafe_name": "cafename2",
            "membership_create_date": "2019-01-02T17:38:07.000+0000",
            "cafe_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/KakaoTalk_Photo_2018-12-16-00-08-50.jpeg"
        }
         ]
}

조회 실패

{
    "status" : 404,
    "message" : "멤버쉽 리스트 조회 실패",
    "data" : null
}

인증 실패

{
    "status" : 401,
    "message" : "인증 실패",
    "data" : null
}

DB 에러

{
    "status" : 600,
    "message" : "데이터베이스 에러",
    "data" : null
}

INTERNAL SERVER ERROR

{
    "status" : 500,
    "message" : "서버 내부 에러",
    "data" : null
}
Clone this wiki locally