GET api/taxon/{taxonId}
Gets the taxon.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taxonId |
The taxon identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The taxon information.
TaxonSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| taxonId |
Gets or sets the taxon id. |
integer |
None. |
| taxonName |
Gets or sets the name of the taxon. |
string |
None. |
| taxonAuthority |
Gets or sets the taxon authority. |
string |
None. |
| taxonGroupName |
Gets or sets the name of the taxon group. |
string |
None. |
| taxonRankName |
Gets or sets the name of the taxon rank. |
string |
None. |
| commonName |
Gets or sets the name of the common. |
string |
None. |
| dataCount |
Gets or sets the data count. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"taxonId": 1,
"taxonName": "sample string 2",
"taxonAuthority": "sample string 3",
"taxonGroupName": "sample string 4",
"taxonRankName": "sample string 5",
"commonName": "sample string 6",
"dataCount": 7
}
application/xml, text/xml
Sample:
<taxonSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nbdc.WebServices.Models.Taxon"> <commonName>sample string 6</commonName> <dataCount>7</dataCount> <taxonAuthority>sample string 3</taxonAuthority> <taxonGroupName>sample string 4</taxonGroupName> <taxonId>1</taxonId> <taxonName>sample string 2</taxonName> <taxonRankName>sample string 5</taxonRankName> </taxonSummary>