-
Notifications
You must be signed in to change notification settings - Fork 4
3.5.5. 휴지통 조회
sunkyungBAEK edited this page Jul 1, 2019
·
2 revisions
메소드 | 경로 | 기능 설명 |
---|---|---|
GET | BASEURL/mypage/trashcan | 휴지통 조회 |
Content-Type: application/json
accesstoken: 제공된 액세스토큰 값
- status: 200
- body : {
status: 200 (OK),
success: true,
message: "조회 성공",
data: 휴지통 리스트 Data (delete_flag)
}
- status: 200
- body : {
status: 401 (UNAUTHORIZATION),
success: false,
message: "유효하지 않은 토큰"
}
- status: 200
- body : {
status: 401 (UNAUTHORIZATION),
success: false,
message: "기간이 만료된 토큰"
}
- status: 200
- body : {
status: 500 (INTERNAL_SERVER_ERROR),
success: false,
message: "서버 에러ㅜㅜ"
}