-
Notifications
You must be signed in to change notification settings - Fork 4
판매 내역 조회
dayoung edited this page Jan 7, 2019
·
14 revisions
메소드 | 경로 | 설명 |
---|---|---|
Get | /notices/sells/{user_idx} | 판매 내역 조회 (날짜 DESC) |
Authorization : token
GET localhost:8080/notices/sells/2
{
"status": 200,
"message": "알림 판매 내역 조회 성공",
"data": [
{
"p_idx": 13,
"p_isPay": 11, //노필요
"p_isDelivery": 0,
"p_date": "01.05(토)",
"a_idx": 12,
"a_name": "안정과 불안정",
"a_u_name": "김다영",
"a_price": 0, //노필요
"a_pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/woman_in_blue.png",
"u_name": "관리자",
"u_phone": "010-3113-0573",
"u_address": "인천시 계양구 계양문화로 168 317동 304호",
"u_bank": null,
"u_account": null
},
{
"p_idx": 2,
"p_isPay": 21, //노필요
"p_isDelivery": 1,
"p_date": "11.24(토)",
"a_idx": 13,
"a_name": "너와나와카와",
"a_u_name": "김다영",
"a_price": 0, //노필요
"a_pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/woman_in_blue.png",
"u_name": "관리자",
"u_phone": "010-3113-0573",
"u_address": "인천시 계양구 계양문화로 168 317동 304호",
"u_bank": null,
"u_account": null
}
]
}
변수 | 타입 | 설명 |
---|---|---|
p_idx | int | 구매 인덱스 |
p_isPay | int | 구매 상태 (노필요) |
p_isDelivery | int | 구매 방법 |
p_date | String | 구매 날짜 (12.03(목)) |
a_idx | int | 작품 인덱스 (FK) |
a_name | String | 작품명 |
a_u_name | String | 작가 이름 |
a_price | int | 작품 가격 (노필요) |
a_pic_url | String | 사진 url |
u_idx | int | (판매자 혹은 구매자) u_idx |
u_name | String | (판매자 혹은 구매자) 이름 |
u_phone | String | (판매자 혹은 구매자) 핸드폰 번호 |
u_address | String | (판매자 혹은 구매자) 주소 |
u_bank | String | (판매자 혹은 구매자) 은행 |
u_account | String | (판매자 혹은 구매자) 계좌번호 |
{
"status": 401,
"message": "인증 실패",
"data": null
}
유저의 판매내역이 없을 경우
{
"status": 204,
"message": "판매내역이 존재하지 않습니다.",
"data": []
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}