Skip to content

foodCreate

Hyun-juhee edited this page Dec 30, 2019 · 2 revisions

식사 추가하기


[POST] ~/citys/:CityId/Food


Request-Header

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

Request-Body

이름 type 설명
name string activity 이름
grade string 가격구간으로 나눈 등급(1,2,3)
cost int 가격

Response - body

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