Skip to content

List Geofences in Enterprise
Stable

Request

API to view all the geofences in an enterprise

Security
apiKey
Path
enterprise_idstring, (uuid)required

A UUID string identifying the enterprise.

Query
searchstring

A search term.

limitinteger

Number of results to return per page.

offsetinteger

The initial index from which to return the results.

cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v0/enterprise/{enterprise_id}/create-apply-geo-fence/?search=string&limit=0&offset=0' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

successful operation

Bodyapplication/json
countintegerrequired
nextstring or null, (url)
previousstring or null, (url)
resultsArray of objects(Geofence)required
Response
{ "count": 0, "next": "string", "previous": "string", "results": [ {} ] }