GetUpdatedPropertyDetails {ZillowR}R Documentation

Make request to Zillow API GetUpdatedPropertyDetails Web Service

Description

For a specified property, the GetUpdatedPropertyDetails API returns all of the home facts that have been edited by the home's owner or agent. The result set contains the following attributes:

Usage

GetUpdatedPropertyDetails(
  zpid = NULL,
  zws_id = getOption("ZillowR-zws_id"),
  url = "http://www.zillow.com/webservice/GetUpdatedPropertyDetails.htm"
)

Arguments

zpid

The Zillow Property ID for the property for which to obtain information. Required.

zws_id

The Zillow Web Service Identifier. Required.

url

URL for the GetUpdatedPropertyDetails Web Service. Required.

Details

Value

A named list with the following elements:

request

a list with the request parameters

message

a list of status code(s) and message(s) returned by the API

response

an XMLNode with the API-specific response values. At this time, no further coercion is performed, so you may have to use functions from the XML package to extract the desired output.

Examples

## Not run: 
GetUpdatedPropertyDetails(zpid = 48749425)
## End(Not run)

[Package ZillowR version 1.0.0 Index]