-
Notifications
You must be signed in to change notification settings - Fork 3
[GET] 시험일정 관리 조회 (승혜)
snghx edited this page Aug 16, 2021
·
1 revision
메소드 경로 짧은 설명 GET /manage/list 시험일정 관리 list 조회
{baseURL}/manage/list
성공
- 등록된 시험일정 존재
[
{
"manageid": "ex1",
"date": "2021-08-11T15:00:00.000Z",
"subject": "데베",
"index": 3
}
]
- 등록된 시험일정 없음
{
success : true,
message: '등록된 시험일정 없음'
}
실패
- token 만료
{
status : 401
success : false,
message : "token이 유효하지 않습니다."
}
- 시험일정 조회 오류
{
success : false,
message : '시험일정 조회 오류'
}