Help us improve the Developer Guide! Share your feedback using the “Was this helpful?” option on the right of each page.

Room Rates

Returns all Room Rates for a specified property within your group.

Retrieve property room rates

get

Retrieve all room rates for a property.

Authorizations
Path parameters
propertyUuidstringRequired

uuid for a property

Query parameters
pageinteger · min: 1Optional

page number (defaults to 1)

perPageinteger · min: 1 · max: 50Optional

items per page (defaults to 10)

Header parameters
x-sm-api-keystringRequired

access token retrieved from Multi-Property Platform

Responses
200
OK
application/json
Responseall ofExample: {"results":[{"uuid":"95dd1036-0a9e-449e-b834-3a606663aa9c","roomTypeUuid":"403950b4-0919-4396-afa1-3957a38a83f8","name":"Ocean View Deluxe","description":"Private bedroom with ensuite","cancellationPolicy":"Deposits are refundable if bookings are cancelled 2 weeks or more before arrival.","promotionOnly":false}],"page":1,"perPage":1,"total":1,"totalPages":1}
get
GET /properties/{propertyUuid}/room-rates HTTP/1.1
Host: 
x-sm-api-key: text
Accept: */*
{
  "results": [
    {
      "uuid": "95dd1036-0a9e-449e-b834-3a606663aa9c",
      "roomTypeUuid": "403950b4-0919-4396-afa1-3957a38a83f8",
      "name": "Ocean View Deluxe",
      "description": "Private bedroom with ensuite",
      "cancellationPolicy": "Deposits are refundable if bookings are cancelled 2 weeks or more before arrival.",
      "promotionOnly": false
    }
  ],
  "page": 1,
  "perPage": 1,
  "total": 1,
  "totalPages": 1
}

Last updated

Was this helpful?