Get Venue Rate Plan List

Get Venue Rate Plan List

POST [PlatformAddress]/api/1.0/venue?action=getVenueRatePlanListundefined

Get the rate plan for a specific venue.

Path Parameters

NameTypeDescription

venueId

integer

The id of the venue

{
  "meta": {
    "totalResults": 2,
    "start": 0,
    "perPage": null,
    "count": 2
  },
  "results": [
    {
      "id": 1,
      "name": "Basic Rate Plan",
      "code": "2-1",
      "description": "<p>Basic Room Pan</p> "
    },
    {
      "id": 2,
      "name": "Luxrious Plan",
      "code": "2-2",
      "description": "<p><strong>This is bit good:) here &#160;</strong></p> "
    }
  ]
}

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 Rate Plan List

{
  "venueId": 1
}

Last updated