GET api/taxonGroup/lookupOutput?search={search}&limit={limit}
Searches for output taxon groups that contain given search string.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| search |
The search text. |
string |
Required |
| limit |
The maximum number of taxon groups that should be returned. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
List of taxon groups that contain search.
Collection of TaxonGroupLookup| Name | Description | Type | Additional information |
|---|---|---|---|
| taxonGroupId |
Gets or sets the taxon group identifier. |
integer |
None. |
| name |
Gets or sets the name. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"taxonGroupId": 1,
"name": "sample string 2"
},
{
"taxonGroupId": 1,
"name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOftaxonGroupLookup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nbdc.WebServices.Models.TaxonGroup">
<taxonGroupLookup>
<name>sample string 2</name>
<taxonGroupId>1</taxonGroupId>
</taxonGroupLookup>
<taxonGroupLookup>
<name>sample string 2</name>
<taxonGroupId>1</taxonGroupId>
</taxonGroupLookup>
</ArrayOftaxonGroupLookup>