GET api/utils/geolevels Authentication required

Use this method to fetch all the geo levels available.

Request

No URI or Body Parameter required

Response

Returns all the geo levels

Output : array of objects (See Model)

Ouput Sample

  • application/json, text/json :
  • [ { "level": 3, "description": "House" }, { "level": 3, "description": "House" } ]
  • application/xml, text/xml :
  • <ArrayOfGeoLevel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kapitol.Registered.API.Models"> <GeoLevel> <Description>House</Description> <Level>3</Level> </GeoLevel> <GeoLevel> <Description>House</Description> <Level>3</Level> </GeoLevel> </ArrayOfGeoLevel>