Skip to content

가게등록

Bohyeon Kim edited this page Oct 12, 2021 · 1 revision

가게등록

메소드 경로 짧은 설명
POST board/store 가게등록

요청 헤더

Bearer 헤더에 access 토큰 값 넣어야 함

Content-Type: application/json

요청 바디

{
    "id": "10",
    "store_name":"Coding Machine",
    "address": "dugn1996",
    "post": "1996-09-02",
    "biz_num": 1,
    "latitude" : 1,
    "longitude":1,
    "user" :10,
    "menu" : "낙지김치죽",
    "store_img" : ""
}

응답 바디

성공

{
    "id": 26,
    "store_name": "Coding Machine",
    "address": "dugn1996",
    "post": "1996-09-02",
    "biz_num": "1",
    "latitude": "1.000000000000000",
    "longitude": "1.000000000000000",
    "user": 10,
    "menu": [],
    "store_img": []
}
Clone this wiki locally