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

담당자
김채원
Path
/routines/{id}/missions
기능
루틴 상세 조회
비고
- 루틴 가져오기 기능 시 startGoalTime 추가 필요!!!
완료
완료
HTTP verbs
GET
도메인
루틴

Request


Response


{ id: string, date: string, // 수행한 날짜 startTime: string, // 수행 시작한 시간 endTime: string // 수행 완료한 시간 userDurationTime: string, missions: [] missionCompletions: missionCompletion[] }
userDurationTime : 유저 해당 루틴을 수행한 총 시간
missionCompletion[] : 미션 수행을 담은 배열
//김채원 { name : string, emoji : string, color : string rouutineCategory : [] missionDetailResponses: [ { missionId: number, name: string, durationGoalTime: number, orders: number, emoji: string, color: string }] }
//김채원 //예시 { "data": { "name": "운동하기", "emoji": "><", "color": "black", "startGoalTime": "2021-11-24T13:21:52.313", "durationGoalTime": 140, "routineCategory": [], "weeks": [ "SAT", "SUN" ], "missionDetailResponses": [ { "missionId": 1, "name": "뛰기", "durationGoalTime": 10, "orders": 1, "emoji": "><", "color": "white" }, { "missionId": 2, "name": "뛰기", "durationGoalTime": 10, "orders": 2, "emoji": "><", "color": "white" }, { "missionId": 3, "name": "뛰기", "durationGoalTime": 10, "orders": 3, "emoji": "><", "color": "white" }, { "missionId": 5, "name": "뛰기", "durationGoalTime": 10, "orders": 4, "emoji": "><", "color": "white" }, { "missionId": 4, "name": "뛰기", "durationGoalTime": 10, "orders": 5, "emoji": "><", "color": "white" } ] } }