Mobile SIM Profiles


API for browsing, adding, editing and deleting Mobile SIM Profiles.

URLs

References

Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Updating a Resource
Deleting a Resource
Mobile SIMs API

Notes

Mobile SIM Profile Object

{
  "MobileSimProfileId": 0,
  "MobileSimId": 0,
  "MobileProfileId": 0,
  "Imsi": "",
  "ImsiStatusType": "istNone",
  "Msisdn": "",
  "AuxMsisdn": "",
  "HlrStatusType": "hstNone",
  "Enabled": false,
  "LastActivatedDateTime": "",
  "Voice": false,
  "Sms": false,
  "Mms": false,
  "Data": false,
  "LastUpdatedDateTime": "",
  "LastUpdatedBy": "",
  "NumProfiles": 0
}

Table Definition

MOBILE_SIM_PROFILES

This table stores mobile profiles that are assigned to a specific SIM.

Field Name Type Size Description
MOBILE_SIM_PROFILE_ID bigint 8 Primary key.
MOBILE_SIM_ID bigint 8 Foreign key into the MOBILE_SIMS table.
MOBILE_PROFILE_ID smallint 2 Foreign key into the MOBILE_PROFILES table.
IMSI varchar 20 The IMSI for this mobile SIM profile.
IMSI_STATUS_TYPE tinyint 1 Foreign key into the IMSI_STATUS_TYPES table.
MSISDN varchar 20 The MSISDN of this mobile SIM profile.
AUX_MSISDN varchar 20 The AUX MSISDN of this mobile SIM profile.
HLR_STATUS_TYPE tinyint 1 Foreign key into the HLR_STATUS_TYPES table.
ENABLED bit 1 Specifies whether or not this mobile SIM profile can be used by the system.

0 – Disabled 1 – Enabled
LAST_ACTIVATED_DATE_TIME datetime 8 Date and time in UTC this mobile SIM profile was last activated.
VOICE bit 1 Indicates whether or not this mobile SIM profile supports voice. 0 – Disabled 1 – Enabled
SMS bit 1 Indicates whether or not this mobile SIM profile supports SMS. 0 – Disabled 1 – Enabled
MMS bit 1 Indicates whether or not this mobile SIM profile supports MMS. 0 – Disabled 1 – Enabled
DATA bit 1 Indicates whether or not this mobile SIM profile supports data. 0 – Disabled 1 – Enabled
LAST_UPDATED_DATE_TIME smalldatetime 2 Date and time in UTC this entry was last updated.
LAST_UPDATED_BY varchar 20 The name of the user that last updated this record.