Skip to content

공간 등록

epitone edited this page Dec 28, 2020 · 1 revision

공간 등록

메소드 경로 짧은 설명
POST /post 포스팅 등록

Request

body : form-data

변수 타입 설명
image File 포스팅 사진 등록
{
    "image": 등록할 포스팅 사진,
    "title": "포스팅 제목", (ex: "강남 카페")
    "address": "포스팅 업체 주소", (ex: "서울특별시 서초구")
    "price": "포스팅 업체 가격", (ex: "30000원")
    "category": "포스팅 카테고리" (ex: "카페")
}

Response

Success: 포스팅 등록 성공

{
    "status": 200,
    "success": true,
    "message": "포스트 생성 성공",
    "data": {
        "id": 1,
        "title": "포스팅 제목",
        "address": "포스팅 업체 주소",
        "price": "포스팅 업체 가격",
        "postImageUrl": "https://sopt-27-epitone.s3.ap-northeast-2.amazonaws.com/images/origin/1607576183811.png",
        "category": "포스팅 업체 카테고리"
    }
}

fail: 입력값 미등록시

{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다."
}