Get Venue Room List
Get Venue Room List
POST
[PlatformAddress]/api/1.0/venue?action=getVenueRoomList
Path Parameters
Name
Type
Description
venueId
integer
The id of the venue
{
"meta": {
"totalResults": 1,
"start": 0,
"perPage": null,
"count": 1
},
"results": [
{
"id": 1,
"code": "2-1",
"name": "Family RoomFamily",
"description": "<p>The best family rooms:</p> <ul><li>One double bed</li> <li>Two child beds</li> <li>Sitting area</li> <li>Balcony</li> </ul>",
"numStandardAdults": 2,
"numExtraAdults": 1,
"extraAdultCost": 100,
"canSmoke": false,
"capacity": 10,
"marketplaceName": null
}
]
}
The result from this call will be a collection of all the events the user has access to. This call also accepts the pagination and filter properties. The venueId is required, for example {"venuId":10}
Example Request
Get a specific Venue’s Room List
{
"venueId": 1
}
Last updated