list(…)
Returns list of all tracker bundles.
If “filter” is used, entities will be returned only if filter string is contained within one of the following fields:
id, imei, model_code, iccid, assign_time
required permissions:
- tracker_bundles: “read”
parameters:
name | description | type |
---|---|---|
filter | Optional. Text filter string. | String |
order_by | Optional. Specify list ordering. Can be one of id, model_code, imei, iccid, assign_time, order_id | String |
ascending | If true, ordering will be ascending, descending otherwise. Default is true. | Boolean |
offset | Optional. Starting offset, used for pagination. Default is 0. | Int |
limit | Optional. Max number of records to return, used for pagination. | Int |
return:
{
"success": true,
"list" : [ <bundle> , ... ],
"count" : <int> // total number of records (ignoring offset and limit), e.g. 42
}