API for browsing, adding, editing and deleting Mobile SIM Profiles.
GET /mobilesims/profiles
Return a list of Mobile SIM Profiles.
GET /mobilesims/{MobileSimId}/profiles
Return a list of Profiles for the specified Mobile SIM Id.
GET /mobilesims/profiles/{MobileSimProfileId}
Return a specific Mobile SIM Profile.
POST /mobilesims/profiles
Create a new Mobile SIM Profile.
PUT /mobilesims/profiles/{MobileSimProfileId}
Update an existing Mobile SIM Profile.
DELETE /mobilesims/profiles/{MobileSimProfileId}
Delete the specified Mobile SIM Profile.
PUT /mobilesims/profiles/{MobileSimProfileId}/activate
Activate an existing Mobile SIM Profile.
PUT /mobilesims/profiles/{MobileSimProfileId}/deactivate
Deactivate an existing Mobile SIM Profile.
Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Updating a Resource
Deleting a Resource
Mobile SIMs API
{
"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
}
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. |