Skip to content

날짜로달력조회

황규철 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

응답 바디

SUCCESS : 해당 날짜로 달력 조회 성공

{
    "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"
            }
        ]
    }
}