Room Types Detail API
Returns all the details associated with a single RoomType or a group of RoomTypes.
API Details
GET
/api/v1/hotel/content-api/types/rooms/detail
Headers
Name
Value
Content-Type
application/json
Authorization
<Access token>
Accept-Encoding
gzip
Query Params
Name
Type
Sample
roomCodes
string
[ "X1-2001" , "X1-2002" ]
Response
{
"success": true,
"data": {
"rooms": [
{
"roomTypeCode": "X1-1001",
"roomName": "Standard Room",
"amenities": [
{
"amenityId": 10010
},
{
"amenityId": 10011
}
],
"images": [
{
"path": "https://sample.com/giata/original/13/136069/136069a532.jpg"
},
{
"path": "https://sample.com/giata/original/13/136069/136069a212.jpg"
},
]
},
]
}
}
Last updated