Device Smart Search

API provides the capability to search for Devices using an Elasticsearch query format. In the query string format, different attributes of Device can be combined using AND/OR operators in the query. The search results can be restricted to specific account(s) by providing the accountId(s) in addition to the query.

Required permission: device-read

Sample input request body:

Search for a specific ESN.

{
  "search": {
    "queryString": "4562211953"
  }
}

Request all the devices in an account and its subaccounts.

{
  "search": {
    "queryString": "*",
    "accountId": 1110,
    "hierLevel": "All"
  }
}

Request multiple devices.

{
  "search": {
    "queryString": "esn: (4562211953 OR 1110000305 OR 3671000349)"
  }
}
Log in to see full request history
Query Params
boolean

If true, devices with Location will be returned.

boolean

If true, devices with ID Report will be returned.

boolean
boolean

If true, devices with latest file history with PENDING status will be returned.

string

To get device configuration in device response.

string
double
required

Version for Smart search endpoint

int32

Page number to be fetched.

int32

Page size. Number of devices per page.

string

Sort devices response by specified field.

string

HierLevel 'ALL' returns the devices in an account and its subaccounts.

Body Params
search
object
required
Responses

Language
Credentials
Click Try It! to start a request and see the response here! Or choose an example:
application/json; charset=utf-8