/v1.0/devices/{corpId}List all devices for a corporate account with pagination support. Returns device details including status, usage, network, and location data.
Parameters
corpIdstringrequiredCorporate account identifier
offsetintegerrequiredPagination offset (0-based)
limitintegerrequiredNumber of results (max 100)
sortstringrequiredSort field (MDN, STATUS, DEVICE_NAME, LAST_30_DAYS_USED)
sortDirstringrequiredSort direction (ASC or DESC)
sentinel devices list --corp NORTHSTAR-ISD --limit 50sentinel_list_devicescurl "https://sentinel-api.kajeet.com/sentinel/api/v1.0/devices/NORTHSTAR-ISD?offset=0&limit=25&sort=LAST_30_DAYS_USED&sortDir=DESC" \
-H "Authorization: Bearer $SENTINEL_TOKEN"{
"totalCount": 230,
"devices": [
{
"key": "5212671508",
"mdn": "521-267-1508",
"status": "active",
"network": "Verizon",
"deviceName": "Kajeet ENT-BYOD",
"corpDescription": "Northstar Independent School District",
"monthlyAmountUsed": 31245.43,
"last30DaysUsed": 31245.43,
"nickname": "Main Office Hotspot",
"filterGroup": "Staff",
"imei": "355737360073462",
"onlineStatus": true
},
{
"key": "3042286302",
"mdn": "304-228-6302",
"status": "active",
"network": "T-Mobile",
"deviceName": "SmartSpot AOL-BYOD",
"corpDescription": "Northstar Independent School District",
"monthlyAmountUsed": 8106.85,
"last30DaysUsed": 8106.85,
"nickname": "Bus #47",
"filterGroup": "Student_K8",
"onlineStatus": false
}
]
}