HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel

담당자
김채원
Path
/routines
기능
루틴 전체/완료/미완료 조회
비고
완료
완료
HTTP verbs
GET
도메인
루틴

Request


// 김채원 전체 조회 url: /routines 완료 조회 url : /routines?status=finish 미완료 조회 url : /routines?status=not_finish

Response


{ routines: routine[], }
routine[] : 루틴이 담긴 배열
//김채원 { "data": [ { "routineId": 1, "name": "운동하기", "routineCategory": [], "startGoalTime": "2021-12-09T00:00:00", "durationGoalTime": 3, "weeks": [ "MON", "THU" ], "color": "black", "emoji": "><" }, { "routineId": 3, "name": "운동하기", "routineCategory": [], "startGoalTime": "2021-12-09T00:00:00", "durationGoalTime": 3, "weeks": [ "MON", "THU" ], "color": "black", "emoji": "><" } ] }