기록보관함 생성

URL Params
Query Strings
None
Header
headers: { Authorization: `Bearer ${getToken()}`, },
Plain Text
복사
Body
{ "id": 기록보관함 id (long), <- 기록 보관함 아이디는 생성할 때 생기기 때문에 안보내셔도 됩니다. "userId": 유저 id (string), <- 유저 아이디는 access token으로 알 수 있기 때문에 안보내셔도 됩니다. "restaurantId": 식당 id (long), "temp": 온도(int) }
JavaScript
복사
Success Response
201
{ "message": "success", "data" : { "id": 기록보관함 id (long), "userId": 유저 id (string), "restaurantId": 식당 id (long), "temp": 온도(int) } }
JSON
복사
401