-
Notifications
You must be signed in to change notification settings - Fork 0
날짜로달력조회
황규철 edited this page May 1, 2022
·
3 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /calendar?date={date} | 날짜로 달력 조회 |
PARAMETER : date = 날짜
ex) /calendar?date=2022-04
Content-Type: application/json
Header: jwt token
{
"status": 200,
"success": true,
"message": "사용자 달력 조회 성공",
"data": {
"usrChrImgs": [
{
"usrChrIdx": 1,
"usrChrImg": "https://s3-ap-northeast-2.amazonaws.com/hwangkcbucket/1/2022/4/16/chrImg",
"usrChrDateCrt": "2022-04-16"
}
]
}
}