API for browsing, adding, editing and deleting Mobile Services.
GET /mobileservices
Return a list of Mobile Services.
GET /mobileservices/{Id}
Return a specific Mobile Service.
POST /mobileservices
Create a new Mobile Service.
PUT /mobileservices/{Id}
Update an existing Mobile Service.
DELETE /mobileservices/{Id}
Delete the specified Mobile Service.
Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Updating a Resource
Deleting a Resource
{
"MobileFeatureCodeId": 0,
"MobileFeatureCode": "",
"MobileServiceId": 0,
"Account": "",
"AccountId": 0,
"AccountGroupId": 0,
"Description": ""
}
This table stores mobile services available on the system that can be mapped to mobile feature codes.
Field Name | Type | Size | Description |
---|---|---|---|
MOBILE_SERVICE_ID | smallint | 2 | Primary key. |
MOBILE_SERVICE | varchar | 40 | The name of the mobile service. |
SERVICE_TYPE | tinyint | 1 | Foreign key into the MOBILE_SERVICE_TYPES table indicating the type of mobile service this is. |
PARAMETER1 | varchar | 160 | Value of input parameter based on service type (only applies to certain service types). |
PARAMETER2 | varchar | 160 | Value of input parameter based on service type (only applies to certain service types). |
PARAMETER3 | varchar | 160 | Value of input parameter based on service type (only applies to certain service types). |
PARAMETER4 | varchar | 160 | Value of input parameter based on service type (only applies to certain service types). |
PARAMETER5 | varchar | 160 | Value of input parameter based on service type (only applies to certain service types). |
This table stores the mobile service types used in the system to define mobile services offered on the system.
Field Name | Type | Size | Description |
---|---|---|---|
SERVICE_TYPE | tinyint | 1 | Primary key. |
DESCRIPTION | varchar | 40 | Description of this type (e.g. “Balance Notification,” “Call Forward All,” “Call Forward Off”, etc.). |
PARAMETER_TYPE1 | varchar | 50 | Label for necessary input parameter for this service type (only applies to certain service types). |
PARAMETER_TYPE2 | varchar | 50 | Label for necessary input parameter for this service type (only applies to certain service types). |
PARAMETER_TYPE3 | varchar | 50 | Label for necessary input parameter for this service type (only applies to certain service types). |
PARAMETER_TYPE4 | varchar | 50 | Label for necessary input parameter for this service type (only applies to certain service types). |
PARAMETER_TYPE5 | varchar | 50 | Label for necessary input parameter for this service type (only applies to certain service types). |