The article includes:
Queue an activation to active for a single KORE device from your stock inventory.
There is a small delay between a SIM activation on the KORE network (physically turned on) and when the transactions and business logic are completed within the PRiSMPro environment. You may see evidence of devices being live on the network shortly before the API reports that they are active.
Use the queryEAPcodes or queryEAPDetails calls for your current EAP list and details.
Notes: Review the activation process for detailed information.
IMEI is required for KORE VZW.
Request URL (production) | https://prismproapi.koretelematics.com/4/TransactionalAPI.svc/json/activateDevice |
Request URL (sandbox) | https://prismproapi.sandbox.koretelematics.com/4/TransactionalAPI.svc/json/activateDevice |
Request method | Post |
Request
Field | Data type | Mandatory | Min length | Max length | Description |
deviceNumber | string | Y | 11 | 20 | The SIM number or ICCID. |
EAPCode | string | Y | 6 | 18 | The EAP code for the Express Activation Profile to use for the activation. |
IMEI | string | N | 14 | 16 |
JSON request example
{
"deviceNumber" : "1234567891234567891",
"EAPCode" : "EAP000001",
"IMEI" : ""
}
Response
Parameter name | Data type | Min length | Max length | Description |
requestStatus | int | Request status code | ||
trackingNumber | string | 7 | 50 | tracking number |
JSON response example
{
"d": {
"__type": "ProvisioningRequestTracking:https://PRiSMProAPI.koretelematics.com/types",
"requestStatus": 0,
"trackingNumber": "1234567891"
}
}