-
Notifications
You must be signed in to change notification settings - Fork 2
캘린더 날짜별 공고 조회
jungahshin edited this page Jan 1, 2020
·
3 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /calender/{day} | 캘린더에서 날짜별로 추가한 공고 조회 |
변수 | 타입 | 설명 |
---|---|---|
day | STRING | 클릭한 캘린더의 날짜 |
/calender/2019-12-25
Content-Type: application/json
token : JWT
캘린더 클릭한 날짜를 받아 그 날에 추가된 공고 조회를 합니다.
{
"success": true,
"message": "캘린더 조회 성공",
"data": [
{
"logo": null,
"calenderIdx": 13,
"company": "2",
"team": "2",
"d_day": 28
}
]
}
{
"status" : 100,
"success": false,
"message": "잘못된 형식의 토큰입니다."
}
{
"status" : 380,
"success": false,
"message": "캘린더 조회 실패"
}