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