Super SIM
KORE's Super SIM API empowers you to manage and deploy massive fleets of IoT devices around the world.
Using this REST API, you can activate and deactivate Super SIMs, control the capabilities of individual Super SIMs or groups of Super SIMs, send machine-to-machine (M2M) messages, and query usage.
The Super SIM API Base URL
All URLs in the reference documentation use the following base URL:
The API is served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported. All responses are provided in JSON format.
You don't need to use the .json
file extension in API request URIs.
API Resources
The Super SIM API comprises the following resources:
API Resource Properties
When you create or update resources, you indicate the data that is being added or changed by specifying the appropriate resource property. All resource properties are case-sensitive and written in UpperCamelCase. For example, if you want to change a new Sim's status from new
to active
and receive an asynchronous notification of the change, you call:
This contrasts with responses from the API, in which properties are referenced using lower_snake_case. For example, getting that same Sim's details will return:
The API documentation presents the appropriate parameter formatting for the language or tool that you select in the code column.
API Authorization
Review our API authorization guide for more details on how to access KORE's APIs and make API calls to the Super SIM product.
API Errors
Review our API errors guide for more details on how API errors are returned and details on what kinds of error codes you may encounter.
Asynchronous resources
Certain operations in the Super SIM API — such as changing a Sim's status — are handled asynchronously. These operations will return an intermediate HTTP response — 202 Accepted
— while the requested action completes in the background.
Requests that will be processed asynchronously allow you to specify a callback URL for KORE to notify when the requested action has completed. A callback is sent to your server as either an HTTP POST
or GET
, according to your preference. Form parameters or query string parameters sent with the callback request describe the asynchronous outcome. Callback request formats are documented with each of the relevant API resources.
If your initial request completes synchronously, a 200 OK
, 201 Created
, or 204 No Content
response will be returned and you should not expect an asynchronous callback, even if you specified a callback URL.
Help integrating the Super SIM API
KORE's Super SIM API is a flexible building block which can take you from activating your first Super SIM to managing a fleet of millions of Super SIMs.
While we hope this page gives a good overview of what you can do with the API, we're only scratching the surface of what the Super SIM API can do.
If you need any help integrating the Super SIM API or want to talk about best practices, please get in touch by reaching out to KORE support.
Last updated