GET api/Location/GetLocationUrls/{pageNumber}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pageNumber

byte

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LocationUrl
NameDescriptionTypeAdditional information
HotelId

integer

None

HotelName

string

None

HotelCity

string

None

StateCode

string

None

CountryCode

string

None

LastModified

date

None

Response Formats

application/json, text/json

Sample:
    [
  {
    "hotelId": 1,
    "hotelName": "sample string 2",
    "hotelCity": "sample string 3",
    "stateCode": "sample string 4",
    "countryCode": "sample string 5",
    "lastModified": "2025-11-05T21:49:50.6268147-06:00"
  },
  {
    "hotelId": 1,
    "hotelName": "sample string 2",
    "hotelCity": "sample string 3",
    "stateCode": "sample string 4",
    "countryCode": "sample string 5",
    "lastModified": "2025-11-05T21:49:50.6268147-06:00"
  }
]

application/xml, text/xml

Sample:
    <ArrayOfLocationUrl xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Priceline.WebServices.Models">
  <LocationUrl>
    <CountryCode>sample string 5</CountryCode>
    <HotelCity>sample string 3</HotelCity>
    <HotelId>1</HotelId>
    <HotelName>sample string 2</HotelName>
    <LastModified>2025-11-05T21:49:50.6268147-06:00</LastModified>
    <StateCode>sample string 4</StateCode>
  </LocationUrl>
  <LocationUrl>
    <CountryCode>sample string 5</CountryCode>
    <HotelCity>sample string 3</HotelCity>
    <HotelId>1</HotelId>
    <HotelName>sample string 2</HotelName>
    <LastModified>2025-11-05T21:49:50.6268147-06:00</LastModified>
    <StateCode>sample string 4</StateCode>
  </LocationUrl>
</ArrayOfLocationUrl>