Room Types
Returns all Room Types for a select SiteMinder Direct Booking property within your group.
Retrieve all room types 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":"403950b4-0919-4396-afa1-3957a38a83f8","name":"Ocean View","description":"Private bedroom","category":"room","roomSize":80,"roomSizeUnit":"m^2","bathroomQuantity":"1"}],"page":1,"perPage":1,"total":1,"totalPages":1}
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
429
Too Many Requests
application/json
500
Internal Server Error
application/json
503
Service Unavailable
application/json
get
GET /properties/{propertyUuid}/room-types HTTP/1.1
Host:
x-sm-api-key: text
Accept: */*
{
"results": [
{
"uuid": "403950b4-0919-4396-afa1-3957a38a83f8",
"name": "Ocean View",
"description": "Private bedroom",
"category": "room",
"roomSize": 80,
"roomSizeUnit": "m^2",
"bathroomQuantity": "1"
}
],
"page": 1,
"perPage": 1,
"total": 1,
"totalPages": 1
}
Last updated
Was this helpful?