Skip to content
Hankyeol Choi edited this page Jan 20, 2023 · 10 revisions

GET /v1/bookmarks

관심강좌 조회

Input (Example)

Query:

?year=2023&semester=1

name description example
year 년도 2023
semester 학기 - 1(봄),2(여름),3(가을),4(겨울) 1

Output (Example)

해당 학기 관심강좌 목록 반환

{
    "year": 2018,
    "semester": 2,
    "lectures": [
        {
            "id": "5b361f4b5d04ae21b8212ebe",
            "academic_year": "1학년",
            "category": "창의와 융합",
            "class_time": "월(1-3)/수(1-3)/금(1-3)",
            "real_class_time": "월(9:00~11:50)/수(9:00~11:50)/금(9:00~11:50)",
            "class_time_json": [
                {
                    "id": "5b361f4b5d04ae21b8212ec1",
                    "day": 0,
                    "place": "014-207",
                    "start_time": "9:00",
                    "end_time": "11:50",
                    "len": 3.0,
                    "start": 1.0
                },
                {
                    "id": "5b361f4b5d04ae21b8212ec0",
                    "day": 2,
                    "place": "014-207",
                    "start_time": "9:00",
                    "end_time": "11:50",
                    "len": 3.0,
                    "start": 1.0
                },
                {
                    "id": "5b361f4b5d04ae21b8212ebf",
                    "day": 4,
                    "place": "014-207",
                    "start_time": "9:00",
                    "end_time": "11:50",
                    "len": 3.0,
                    "start": 1.0
                }
            ],
            "class_time_mask": [264241152, 0, 264241152, 0, 264241152, 0, 0],
            "classification": "교양",
            "credit": 3,
            "department": "기초교육원",
            "instructor": "안순태",
            "lecture_number": "001",
            "quota": 25,
            "remark": "공자『논어』- 공자에게 길을  묻다",
            "course_number": "L0655.000300",
            "course_title": "독서세미나-고전에 길을 묻다"
        }
    ]
}

POST /v1/bookmarks/lecture

강의를 관심강좌 지정합니다. 해당 강의학기 관심강좌에 추가됩니다.

body

name description example
lecture_id 강좌 아이디 63c152573ef71d00162f65cf

Output

200 empty

에러

  • 강의 존재하지 않음: 404, errorcode: 0x4003
  • 이미 관심강좌 처리된 경우: 에러처리하지 않고 200 반환 (중복등록 되지 않음)

DELETE /v1/bookmarks/lecture

강의를 관심강좌에서 삭제합니다. 해당 강의학기 관심강좌에서 삭제됩니다.

body

name description example
lecture_id 강좌 아이디 63c152573ef71d00162f65cf

Output

200 empty

에러

  • 강의 존재하지 않음: 404, errorcode: 0x4003
  • 관심강좌로 등록되지 않은 경우: 에러처리하지 않고 200 반환