-
Notifications
You must be signed in to change notification settings - Fork 2
7.2. 카드 조회
100yeeun edited this page Jan 3, 2020
·
4 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/card | 카드 조회 |
Content-Type: application/json
token: "사용자 token 값"
카드 조회 성공
{
"status": 200,
"success": true,
"message": "카드 조회 성공",
"data": {
"userName": "조히",
"cardNickname": "국민 1231-**"
}
}
카드 정보를 등록하지 않은 사용자일 때
{
"status": 400,
"success": false,
"message": "카드 정보를 등록하지 않은 사용자입니다"
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}