Skip to content

transportCreate

Hyun-juhee edited this page Jan 1, 2020 · 3 revisions

교통 추가하기


[POST] ~/citys/:CityId/Transport


Request-Header

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

Request-Body

이름 type 설명
name string shopping 이름
cost int 가격
content string 내용

Response - body

SUCCESS
{
    "status": 200,
    "data": {
        "id": 1,
        "name": "bus",
        "cost": 3150,
        "content": "seoul to incheon",
        "CityId": "1"
    },
    "success": true
}
FAIL 1 : 필요한 값이 하나이상 없을때
{
    "status": 400,
    "message": "필요한 값이 없습니다",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "json": {
        "status": 500,
        "success": false
    }
}
Clone this wiki locally