Skip to content

List install devices
Stable

Request

Returns list of devices with the specified app version installed

Security
apiKey
Path
version_idstring, (uuid)required

A UUID string identifying this app version.

application_idstring, (uuid)required

A UUID string identifying this application.

enterprise_idstringrequired

A UUID string identifying enterprise.

Query
searchstring

A search term, search based on device name, device alias_name, group name

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/v1/enterprise/{enterprise_id}/application/{application_id}/version/{version_id}/installdevices?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(InstallDevices)required
Response
{ "count": 0, "next": "string", "previous": "string", "results": [ {} ] }