Remove a line of service. This endpoint can only be accessed by scope org_super. It is not available to PRIVATELTE accounts.
Parameters
mdnpathstringrequired
Mobile Device Number (MDN)
cURL
curl -X DELETE "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
GET/v1.0/devices/{mdn}/configuration/wifiRead-onlyPermalink ↗ Device WLAN configuration by MDN
Parameters
mdnpathstringrequired
Mobile Device Number (MDN)
cURL
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/configuration/wifi" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
PUT/v1.0/devices/{mdn}/configuration/wifiChanges dataPermalink ↗ Update Device WLAN configuration by MDN for authmode wpa2psk
Parameters
mdnpathstringrequired
Mobile Device Number (MDN)
WLAN configurationbodyDeviceWlanConfigRequestrequired
WLAN configuration object
cURL
curl -X PUT "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/configuration/wifi" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"corpId": "NORTHSTAR-ISD",
"note": "Example update payload — confirm schema in Swagger before wiring production."
}'
GET/v1.0/devices/{mdn}/health-history/signal-qualityRead-onlyPermalink ↗ Device Health History Signal Quality by MDN
Parameters
mdnpathstringrequired
Mobile Device Number (MDN)
startDatequerystringrequired
Start date for date range
endDatequerystringrequired
End date for date range
cURL
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/health-history/signal-quality?startDate=03%2F01%2F2026&endDate=03%2F11%2F2026" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
Update Rate Plan for a device. This endpoint can only be accessed by scope org_super, org_tech or org_kajeetmanaged or org_managerplus.
Parameters
mdnpathstringrequired
Mobile Device Number.
Device Rate Planbodyobjectrequired
New Rate Plan.
cURL
curl -X PUT "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/ratePlan" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"corpId": "NORTHSTAR-ISD",
"note": "Example update payload — confirm schema in Swagger before wiring production."
}'
GET/v1.0/devices/{mdn}/real-time-summaryRead-onlyPermalink ↗ Get real-time summary for an eligible device
Parameters
mdnpathstringrequired
Mobile Device Number (MDN) of the device.
cURL
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/real-time-summary" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
Reboot a Cradlepoint device. Available only for WBU business type.
Parameters
mdnpathstringrequired
Mobile Device Number (MDN)
cURL
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/reboot" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
Replace a device. This endpoint can only be accessed by scope org_super, org_tech or org_kajeetmanaged or org_managerplus.
Parameters
mdnpathstringrequired
Mobile Device Number. Network of the device must be 'SPPCS'.
Replacement devicebodyobjectrequired
New device. Status of new device must be AV or PA. Realm of new device and data method of the old device must be the same.
cURL
curl -X PUT "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/devices/521-267-1508/replace" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"corpId": "NORTHSTAR-ISD",
"note": "Example update payload — confirm schema in Swagger before wiring production."
}'