Gets billing rate plans for the device group
Parameters
No parameters.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/billing-plans" \
-H "Authorization: Bearer $SENTINEL_TOKEN"
Carrier lookup, inventory, standard/SmartSIM/eSIM activations, transactions, and downloads.
Gets billing rate plans for the device group
Parameters
No parameters.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/billing-plans" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Gets list of eligible Verizon business internet plans.
Parameters
No parameters.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/businessInternetPlans" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Get the list of carriers available for activation. This endpoint can only be accessed by scope aux_activation.
Parameters
No parameters.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/carriers" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Get the list of carriers available for activation. This endpoint can only be accessed by scope aux_kemp_user and needs corp access for kemp and eSim.
Parameters
No parameters.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/eSim/carriers" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Gets the carrier inventory count.
Parameters
corpIdpathstringrequiredDevice group
carrierquerystringrequiredCarrier Name i.e AT%26T for AT&T
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/eSimInventoryCount/NORTHSTAR-ISD?carrier=value" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Submit eSim activation request. This endpoint can only be accessed by scope aux_activation.
Parameters
eSimActivationRequestInfobodyESimActivationRequestInforequiredeSimActivationRequestInfo
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/esim-transaction" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"example": true,
"corpId": "NORTHSTAR-ISD"
}'Gets the carrier inventory .
Parameters
carrierquerystringrequiredCarrier Name i.e Verizon Priority
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/inventory?carrier=value" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Submit SmartSim activation request. This endpoint can only be accessed by scope aux_activation.
Parameters
smartSimActivationRequestInfobodySmartSimActivationRequestInforequiredsmartSimActivationRequestInfo
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/smartsim-transaction" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"example": true,
"corpId": "NORTHSTAR-ISD"
}'Submit activation request. This endpoint can only be accessed by scope aux_activation.
Parameters
activationRequestInfobodyActivationRequestInforequiredactivationRequestInfo
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/transaction" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"corpId": "NORTHSTAR-ISD",
"imei": "355737360073462",
"iccid": "89014103211118510720",
"carrier": "VERIZON",
"filterGroup": "Student_K8",
"deviceGroup": "Transportation"
}'Gets the detailed activation history. This endpoint can only be accessed by scope aux_activation.
Parameters
sortDirquerystringSort direction
Values: ASC, DESC
offsetquerynumberThe position of the first transaction for the requested result set. Starts from 0.
limitquerynumberThe number of transactions to return.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/transactions?sortDir=DESC&offset=0&limit=25" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Gets the activation transaction details. This endpoint can only be accessed by scope aux_activation.
Parameters
uniqueTransactionIdpathstringrequiredUnique transaction Id specific to an activation request
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/transactions/ACT-2026-0313-001" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Downloads the activation transaction details CSV. This endpoint can only be accessed by scope aux_activation.
Parameters
uniqueTransactionIdpathstringrequiredUnique transaction Id specific to an activation request
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/transactions/ACT-2026-0313-001/csv" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Processes uploaded CSV file and returns IMEI-ICCID pairs for activation confirmation. Accessible only to corps with Activation Tab enabled
Parameters
fileformDatafileThe file to upload.
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/activation/uploadCSV" \
-H "Authorization: Bearer $SENTINEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"example": true,
"corpId": "NORTHSTAR-ISD"
}'When the Export format is omitted, gets the detailed activation history for the last 180 days. For a full transaction history, please include the Export format. This endpoint can only be accessed by scope aux_activation.
Parameters
sortDirquerystringSort direction
Values: ASC, DESC
offsetquerynumberThe position of the first transaction for the requested result set. Starts from 0.
limitquerynumberThe number of transactions to return.
exportquerystringExport format. Currently only CSV is accepted.
curl -X GET "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v2.0/activation/transactions?sortDir=DESC&offset=0&limit=25&export=CSV" \
-H "Authorization: Bearer $SENTINEL_TOKEN"Grab a Dev SIM, get an API key, and POST /v1.0/auth/token from anywhere.