ToDo 완료 목록 조회(완료)
ToDo 완료 목록 조회 API
POST
api/todo/completion
BF : 문범수
Request Body
Name
Type
Description
teamMembers*
List<int>
{ "teamMembers": [1, 2] }
targetDate*
LocalDate
2023-03-01 형식
KeyResultIds
List<int>
{ "KeyResultIds": [1, 2] }
orderby
String
endDate
orderbyrole
String
desc
[
{
"myToDo": true,
"userId": 1,
"createUser": "문범수",
"completionTodo": [
{
"keyResultId" : 1,
"krNumber" : 1,
"toDoId": 3,
"toDo": "우체국다녀오기",
"memo": "우체국",
"startDate": "2023-03-20 11:30",
"endDate": "2023-03-20 11:30",
"priority": 1,
"completion": true,
"fstartDate": "03월 20일",
"fendDate": "03월 20일",
"color": "#FFFFEE"
},
{
"keyResultId" : 1,
"krNumber" : 1,
"toDoId": 2,
"toDo": "홈트하기",
"memo": "집",
"startDate": "2023-03-20 11:30",
"endDate": "2023-03-20 11:30",
"priority": 1,
"completion": true,
"fstartDate": "03월 20일",
"fendDate": "03월 20일",
"color": "#D2EB8A"
}
]
},
{
"myToDo": false,
"userId": 2,
"createUser": "김범수",
"completionTodo": [
{
"keyResultId" : 1,
"krNumber" : 1,
"toDoId": 3,
"toDo": "우체국다녀오기",
"memo": "우체국",
"startDate": "2023-03-20 11:30",
"endDate": "2023-03-20 11:30",
"priority": 1,
"completion": true,
"fstartDate": "03월 20일",
"fendDate": "03월 20일",
"color": "#FFFFEE"
},
{
"keyResultId" : 1,
"krNumber" : 1,
"toDoId": 2,
"toDo": "홈트하기",
"memo": "집",
"startDate": "2023-03-20 11:30",
"endDate": "2023-03-20 11:30",
"priority": 1,
"completion": true,
"fstartDate": "03월 20일",
"fendDate": "03월 20일",
"color": "#D2EB8A"
}
]
}
]
Last updated