diff --git a/man/constructNWISURL.Rd b/man/constructNWISURL.Rd
index 8187563fbfb5b6332226c6af1b5055e5b388a758..909041063c0f439b21358cc4d7c29d929eb77672 100644
--- a/man/constructNWISURL.Rd
+++ b/man/constructNWISURL.Rd
@@ -3,9 +3,9 @@
 \alias{constructNWISURL}
 \title{Construct NWIS url for data retrieval}
 \usage{
-constructNWISURL(siteNumber, parameterCd, startDate = "", endDate = "",
-  service, statCd = "00003", format = "xml", expanded = FALSE,
-  ratingType = "base")
+constructNWISURL(siteNumber, parameterCd = "00060", startDate = "",
+  endDate = "", service, statCd = "00003", format = "xml",
+  expanded = FALSE, ratingType = "base")
 }
 \arguments{
 \item{siteNumber}{string or vector of strings USGS site number.  This is usually an 8 digit number}
diff --git a/man/parameterCdFile.Rd b/man/parameterCdFile.Rd
index 012423eadf99441f67a6bc785c3d0235bb527ca6..532995a605e8f169f4b0db5ff0775aa838ba33a4 100644
--- a/man/parameterCdFile.Rd
+++ b/man/parameterCdFile.Rd
@@ -4,7 +4,7 @@
 \alias{parameterCdFile}
 \title{List of USGS parameter codes}
 \description{
-Complete list of USGS parameter codes as of September 25, 2013.
+Complete list of USGS parameter codes as of November 7, 2014.
 }
 \keyword{USGS}
 \keyword{parameterCd}
diff --git a/man/whatNWISData.Rd b/man/whatNWISData.Rd
index 94a40090021e0c43eba3d5852060282a33d6f7dc..ce4096cd99784ba3a434c85c39555a6f57d23032 100644
--- a/man/whatNWISData.Rd
+++ b/man/whatNWISData.Rd
@@ -4,14 +4,23 @@
 \alias{whatNWISdata}
 \title{USGS data availability}
 \usage{
-getNWISDataAvailability(siteNumber, service = c("uv", "dv", "qw"))
+getNWISDataAvailability(siteNumbers, service = c("uv", "dv", "qw"))
 
-whatNWISdata(siteNumber, service = c("uv", "dv", "qw"))
+whatNWISdata(siteNumbers, service = "all", parameterCd = "all",
+  statCd = "all")
 }
 \arguments{
-\item{siteNumber}{string USGS site number.}
+\item{siteNumbers}{string vector of USGS site number or multiple sites.}
 
-\item{service}{vector string. Options are "uv", "dv", "qw"}
+\item{service}{vector string. Options are "all", or one or many of "dv"(daily values),
+"uv","rt", or "iv"(unit values), "qw"(water-quality),"sv"(sites visits),"pk"(peak measurements),
+"gw"(groundwater levels), "ad" (sites included in USGS Annual Water Data Reports External Link),
+"aw" (sites monitored by the USGS Active Groundwater Level Network External Link), "id" (historical
+instantaneous values), "}
+
+\item{parameterCd}{string vector of valid parameter codes to return. Defaults to "all" which will not perform a filter.}
+
+\item{statCd}{string vector of all statistic codes to return. Defaults to "all" which will not perform a filter.}
 }
 \value{
 retval dataframe with all information found in the expanded site file
@@ -24,6 +33,8 @@ availableData <- whatNWISdata('05114000')
 # To find just unit value ('instantaneous') data:
 uvData <- whatNWISdata('05114000',service="uv")
 uvDataMulti <- whatNWISdata(c('05114000','09423350'),service=c("uv","dv"))
+siteNumbers <- c("01491000","01645000")
+flowAndTemp <- whatNWISdata(siteNumbers, parameterCd=c("00060","00010"))
 }
 \keyword{USGS}
 \keyword{data}