Device Models

Device Model is a subset of manufacturers and every manufacturer has a list of device models followed by device model ID. Device Model is also a targeting feature in Kayzen Platform along with Manufacturer for the more granular target.

Returns a list of Device models that contain the search query. If no search query is specified, returns all models. A maximum of 20 records is returned. There is no pagination support.

📘

GET /api/v1/meta/devices

To List the device model data, model is one of the targeting parameters in Kayzen platform

FieldParamDescription
qstring(optional)Field can be used as search query
curl -X GET \
'[HOST]/api/v1/meta/devices?page=1&per_page=25&q=CPH1801' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer ' \
{
  "data":[
    {
      "id":10002,
      "device_type_id":11,
      "name":"CPH1801",
      "alternate_names":"CPH1801",
      "manufacturer_id":1409,
      "os_id":11
    }
  ],
  "meta":{
    "current_page":1,
    "total_pages":1,
    "total_entries":1
  }
}