KimLeeParkJiChoi / spang-eats

0 stars 0 forks source link

가게 정보 수정 구현 #32

Open seoyeong-4811 opened 1 day ago

seoyeong-4811 commented 1 day ago

> [PATCH] /api/stores/{storeId}

예외 처리

RequestBody

{
"name": "updated test",
"address": "updated address",
"phoneNumber": "010-8888-8888",
"openTime": "10:00:00",
"closeTime": "22:00:00",
"minOrderPrice": 10000,
}

ResponseBody

{
"storeId": 1,
"memberId": 2,
"name": "updated test",
"address": "updated address",
"phoneNumber": "010-8888-8888",
"openTime": "10:00:00",
"closeTime": "22:00:00",
"minOrderPrice": 10000,
"updatedAt": "2024-11-01T12:00:00",
"status": "OPEN"
}