PUT /v1/prices/rooms/{room_id}
Update room prices
Updates pricing for a specific room across date ranges
Request
PUT /v1/prices/rooms/{room_id}
Parameters
[
{
"schema": {
"type": "string"
},
"required": true,
"name": "room_id",
"in": "path"
}
]
Response
{
"200": {
"description": "Prices updated successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"updated_dates": {
"type": "number"
},
"price_cents": {
"type": "number"
},
"currency": {
"type": "string"
}
},
"required": [
"updated_dates",
"price_cents",
"currency"
]
}
},
"required": [
"success",
"data"
]
}
}
}
}
}
View in Interactive API Reference