GET api/stats/geocode
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of GeocodeStats| Name | Description | Type | Additional information |
|---|---|---|---|
| Percentage | decimal number |
None. |
|
| Requests | integer |
None. |
|
| Source | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Percentage": 1.0,
"Requests": 2,
"Source": "sample string 3"
},
{
"Percentage": 1.0,
"Requests": 2,
"Source": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfGeocodeStats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrismAPI.Models">
<GeocodeStats>
<Percentage>1</Percentage>
<Requests>2</Requests>
<Source>sample string 3</Source>
</GeocodeStats>
<GeocodeStats>
<Percentage>1</Percentage>
<Requests>2</Requests>
<Source>sample string 3</Source>
</GeocodeStats>
</ArrayOfGeocodeStats>