Skip to content

activityCreate

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

액티비티 추가하기


[POST] ~/citys/:CityId/Activity


Request-Header

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

Request-Body

이름 type 설명
name string activity 이름
cost int 가격
content string 내용
url_mrt string my-real-trip 예약 링크
url_kl string KLOOK 예약 링크
img string 사진파일

Response - body

SUCCESS
{
    "status": 200,
    "data": {
        "id": 1,
        "name": "Disneyland",
        "cost": "10000",
        "content": "디즈니 랜드 입장권",
        "url_mrt": "https://www.myrealtrip.com/",
        "url_kl": "https://www.klook.com/ko/",
        "CityId": "1",
        "img": "https://sopt-toney.s3.ap-northeast-2.amazonaws.com/1577514902682.jpg"
    },
    "success": true
}
FAIL 1 : 필요한 값이 하나이상 없을때
{
    "status": 400,
    "message": "필요한 값이 없습니다, name",
    "success": false
}
FAIL 2 : 서버 내부 오류
{
    "json": {
        "status": 500,
        "success": false
    }
}
Clone this wiki locally