Get Trip List
GET /api/v1/trips
Authentication required, returns
{ "trips": [{ "id": "1", "checkIn": "1999-11-21", "checkOut": "1999-11-22", "totalPrice": 40000, "headCount": 4, "status": "CANCELLED" }, { "id": "2", "checkIn": "1999-11-21", "checkOut": "1999-11-22", "totalPrice": 40000, "headCount": 4, "status": "DONE" }, { "id": "3", "checkIn": "2000-11-21", "checkOut": "2050-11-22", "totalPrice": 40000, "headCount": 4, "status": "TRAVELING" }, { "id": "4", "checkIn": "5000-11-21", "checkOut": "5000-11-22", "totalPrice": 40000, "headCount": 4, "status": "RESERVED" } ] }