Available Operations
Authentication
| OAuth 2.0 (three_legged) | |
|---|---|
For detailed information on authentication with the Device Status API, please refer to our authentication guide. | |
Scopes:
|
The phone number of the end-user device capable of connecting to a mobile network. Examples of such devices include smartphones or IoT sensors/actuators.
123456789A public identifier addressing a telephone subscription. In mobile networks it corresponds to the MSISDN (Mobile Station International Subscriber Directory Number). In order to be globally unique it has to be formatted in international format, according to E.164 standard, optionally prefixed with '+'.
Example Request
{
"device": {
"phoneNumber": "123456789"
}
}{
"device": {
"phoneNumber": "123456789"
}
}CONNECTED_DATA: The device is connected to the network for Data usage
CONNECTED_SMS: The device is connected to the network for SMS usage
NOT_CONNECTED: The device is not connected
CONNECTED_DATACONNECTED_SMSNOT_CONNECTEDExample Response
{
"connectivityStatus": "CONNECTED_DATA"
}Available Operations
Authentication
| OAuth 2.0 (three_legged) | |
|---|---|
For detailed information on authentication with the Device Status API, please refer to our authentication guide. | |
Scopes:
|
The phone number of the end-user device capable of connecting to a mobile network. Examples of such devices include smartphones or IoT sensors/actuators.
123456789A public identifier addressing a telephone subscription. In mobile networks it corresponds to the MSISDN (Mobile Station International Subscriber Directory Number). In order to be globally unique it has to be formatted in international format, according to E.164 standard, optionally prefixed with '+'.
Example Request
{
"device": {
"phoneNumber": "123456789"
}
}{
"device": {
"phoneNumber": "123456789"
}
}Roaming status. True, if it is roaming
The Mobile country code (MCC) as an geographic region identifier for the country and the dependent areas.
The ISO 3166 ALPHA-2 country-codes of mapped to mobile country code(MCC). If there is mapping of one MCC to multiple countries, then we have list of countries. If there is no mapping of MCC to any country, then an empty array [] shall be returned..
Example Response
{
"roaming": true,
"countryCode": 0,
"countryName": [
"string"
]
}