/stores/{storeId})| 메서드 | 요청 URL |
|---|---|
PUT |
/api/stores/{storeId} |
| 파라미터 | 타입 | 필수여부 | 설명 |
|---|---|---|---|
| Authorization | String | 필수 | JWT 인증 토큰 (OWNER 권한) |
| Content-Type | String | 필수 | application/json |
| 파라미터 | 타입 | 필수여부 | 설명 |
|---|---|---|---|
| storeId | Integer | 필수 | 수정할 가게 ID |
※ 등록 API와 동일
| 필드명 | 타입 | 설명 |
|---|---|---|
| storeId | Integer | 수정된 가게 ID |
| message | String | 수정 완료 메시지 |
200 OK)json
복사편집
{
"storeId": 5,
"message": "가게 정보가 수정되었습니다."
}