GET api/v1/search/featureTypes/{target}/{outputFormat}
This API method returns the list of cataloged feature types that is specified in the query string.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| target |
Target: mars, mercury, moon, or venus |
string |
Required |
| outputFormat |
[Optional field] Specify the desired format json or xml |
string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of FeatureType| Name | Description | Type | Additional information |
|---|---|---|---|
| featureType |
The feature type name |
string |
String length: inclusive between 0 and 200 |
Response Formats
application/json, text/json
Sample:
[
{
"featureType": "sample string 1"
},
{
"featureType": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeatureType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPITest.Models">
<FeatureType>
<featureType>sample string 1</featureType>
</FeatureType>
<FeatureType>
<featureType>sample string 1</featureType>
</FeatureType>
</ArrayOfFeatureType>