Skip to content

[GET] TODO LIST 조회 (승혜)

snghx edited this page Aug 12, 2021 · 1 revision

[GET] TODO LIST 조회 (승혜)

메소드 경로 짧은 설명
GET /todo/list todo list 조회

요청 예시

{baseURL}/todo/list

성공

  • todo list 존재
[
    {
        "todoid": "ex1",
        "content": "투두 테스트",
        "index": 2,
        "date": "2021-08-05T15:00:00.000Z",
        "check": 0
    },
    {
        "todoid": "ex1",
        "content": "D-Day 완성 ",
        "index": 4,
        "date": "2021-08-05T15:00:00.000Z",
        "check": 0
    }
]
  • todo list 없음
{
success : true,
message: "todo list가 존재하지 않습니다."
}

실패

  • token 만료
{
status : 401
success : false,
message : "token이 유효하지 않습니다."
}
Clone this wiki locally