GET api/MyProperty?unitID={unitID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
unitID

integer

Required

Body Parameters

None.

Response Information

Resource Description

MyPropertyDetails
NameDescriptionTypeAdditional information
UnitID

integer

None.

UnitTypeID

integer

None.

ResortID

integer

None.

PMID

integer

None.

Rooms

integer

None.

Bathrooms

decimal number

None.

Sleeps

integer

None.

Name

string

None.

Description

string

None.

Active

boolean

None.

ActiveHA

boolean

None.

ActiveAB

boolean

None.

ActiveFK

boolean

None.

VTLink

string

None.

LastAvailabilityUpdate

date

None.

LastContentUpdate

date

None.

LastRateUpdate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "UnitID": 1,
  "UnitTypeID": 2,
  "ResortID": 3,
  "PMID": 4,
  "Rooms": 5,
  "Bathrooms": 6.0,
  "Sleeps": 7,
  "Name": "sample string 8",
  "Description": "sample string 9",
  "Active": true,
  "ActiveHA": true,
  "ActiveAB": true,
  "ActiveFK": true,
  "VTLink": "sample string 14",
  "LastAvailabilityUpdate": "2025-12-10T06:00:35.2227154+00:00",
  "LastContentUpdate": "2025-12-10T06:00:35.2227154+00:00",
  "LastRateUpdate": "2025-12-10T06:00:35.2227154+00:00"
}

application/xml, text/xml

Sample:
<MyPropertyDetails xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <UnitID>1</UnitID>
  <UnitTypeID>2</UnitTypeID>
  <ResortID>3</ResortID>
  <PMID>4</PMID>
  <Rooms>5</Rooms>
  <Bathrooms>6</Bathrooms>
  <Sleeps>7</Sleeps>
  <Name>sample string 8</Name>
  <Description>sample string 9</Description>
  <Active>true</Active>
  <ActiveHA>true</ActiveHA>
  <ActiveAB>true</ActiveAB>
  <ActiveFK>true</ActiveFK>
  <VTLink>sample string 14</VTLink>
  <LastAvailabilityUpdate>2025-12-10T06:00:35.2227154+00:00</LastAvailabilityUpdate>
  <LastContentUpdate>2025-12-10T06:00:35.2227154+00:00</LastContentUpdate>
  <LastRateUpdate>2025-12-10T06:00:35.2227154+00:00</LastRateUpdate>
</MyPropertyDetails>