POST POS/EventData/Venues/Search Try Now

Searches the venue.

Request Information

URI Parameters

NameDescriptionTypeAdditional information

Body Parameters

The serach request.

NameDescriptionTypeAdditional information
VenueName
The venue name.
string
None.
FirstLetter
First Letter of Venue Name.
string
None.
Country
The country of venue.
string
None.
State
The state of venue.
string
None.
City
The city of venue.
string
None.
ZipCode
The zip code of venue.
string
None.
Latitude
The latitude of venue.
string
None.
Longitude
The longitude of venue.
string
None.
OrderBy
Sets the order by.(Note: Please use column Name Given in Response only,Don't use "Page" or "ItemsPerPage").
string
None.
SortOrder
The SortOrder i.e. "ASC" or "DESC"
string
None.
DateUpdated
Set Date Updated you can use either Date Updated Or UpdatedSince.
date
None.
UpdatedSince
Set From Date and To Date value. Return result for between date , From Date And To Date.
DateValue
None.
Page
Sets the page.
integer
None.
ItemsPerPage
Sets the items per page.
integer
None.

Request Formats

application/json, text/json

Sample:
{
  "VenueName": "",
  "FirstLetter": "",
  "Country": "",
  "State": "",
  "City": "",
  "ZipCode": "",
  "Latitude": "",
  "Longitude": "",
  "OrderBy": "",
  "SortOrder": null,
  "DateUpdated": "2024-04-25T15:00",
  "UpdatedSince": {
    "FromDate": "2024-04-25T15:00",
    "ToDate": "2024-04-25T15:01",
    "FilterByTime": true
  },
  "Page": 12,
  "ItemsPerPage": 13
}

Response Information

Resource Description

Search venue result

NameDescriptionTypeAdditional information
Items
Collection of VenueResponse
None.
Page
integer
None.
TotalPages
integer
None.
Records
integer
None.
Meta
Object
None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "VenueId": "",
      "VenueName": "",
      "Country": "",
      "State": "",
      "City": "",
      "ZipCode": "",
      "Latitude": "",
      "Longitude": "",
      "Status": "Any",
      "EventCount": 9,
      "Aliases": [
        {
          "VenueAliasId": "",
          "Alias": "",
          "VenueId": "",
          "Status": "Any"
        }
      ],
      "DateAdded": "2024-04-25T15:00",
      "DateUpdated": "2024-04-25T15:00"
    }
  ],
  "Page": 1,
  "TotalPages": 2,
  "Records": 3,
  "Meta": {}
}