GET flip/county/plants/fulldetails/{county}

Get a list of county plants' full details

Request Information

URI Parameters

NameDescriptionTypeAdditional information
county

string

Required

Body Parameters

None.

Response Information

Resource Description

Florida County with plants' full details

CountyPlantsFullDetails
NameDescriptionTypeAdditional information
countyName

string

None.

plantDetails

Collection of PlantFullDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "countyName": "sample string 1",
  "plantDetails": null
}

application/xml, text/xml

Sample:
<CountyPlantsFullDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PlantAtlas_APIs.Models">
  <countyName>sample string 1</countyName>
  <plantDetails i:nil="true" />
</CountyPlantsFullDetails>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"countyName":"sample string 1","plantDetails":null});