HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🌚
[New] 우기팀
/
AirCnC API Docs
AirCnC API Docs
/
숙소 변경

숙소 변경

Method
PATCH
URL Patterns
/hosts/{hostId}/rooms/{roomId}
작업 여부

Update Room

PATCH /api/v1/hosts/{hostId}/rooms/{roomId}
 
Optional fields: pricePerDay, description, name
Example request body
{ "room": { "name": "제주도 방", "description": "이 숙소는 아주 좋은 숙소입니다.", "pricePerDay": 20000 } }
Role HOST required
 
Example response body
{ "room": { "id" : 1, "name": "제주도 방", "address": "제주시 하양읍", "description": "이 숙소는 아주 좋은 숙소입니다.", "pricePerDay": 20000, "capacity": 5, "reviewCount": 3 } }