Skip to content

7.2. 카드 조회

100yeeun edited this page Jan 3, 2020 · 4 revisions

카드 조회

수민

메소드 경로 설명
GET /mypage/card 카드 조회

Request Header

Content-Type: application/json
token: "사용자 token 값"

Response Body

Success Response

카드 조회 성공

{
    "status": 200,
    "success": true,
    "message": "카드 조회 성공",
    "data": {
        "userName": "조히",
        "cardNickname": "국민 1231-**"
    }
}

Fail Response

카드 정보를 등록하지 않은 사용자일 때

{
    "status": 400,
    "success": false,
    "message": "카드 정보를 등록하지 않은 사용자입니다"
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally