Skip to content

timelineRead

Hyun-juhee edited this page Jan 2, 2020 · 2 revisions

지출내역 조회


[GET] ~/timeline/:TripId


Request-Header

메소드 파라미터 설명
Content-Type application/json

Response - body

SUCCESS
{
    "status": 200,
    "message": "지출내역 조회 성공",
    "data": [
        {
            "id": 2,
            "day": 1,
            "cost": 12000,
            "category": 5,
            "content": "coffee"
        }
    ],
    "success": true
}

FAIL 1: 해당 cityId에 등록된 지출내역이 없을때

{
    "status": 204,
    "message": "지출내역이 없습니다.",
    "success": false
}

FAIL 2: 서버 내부 오류

{
    "status": 500,
    "message": "지출내역 조회 실패",
    "success": false
}
Clone this wiki locally